git-svn-id: http://mc-server.googlecode.com/svn/trunk@606 0a769ca7-a7f5-676a-18bf-c427514a06d6
		
			
				
	
	
		
			16 lines
		
	
	
		
			241 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			241 B
		
	
	
	
		
			C++
		
	
	
	
	
	
 | 
						|
#include "Globals.h"  // NOTE: MSVC stupidness requires this to be the same across all modules
 | 
						|
 | 
						|
#include "Vector3i.h"
 | 
						|
#include "Vector3d.h"
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
Vector3i::Vector3i( const Vector3d & v )
 | 
						|
	: x( (int)v.x )
 | 
						|
	, y( (int)v.y )
 | 
						|
	, z( (int)v.z )
 | 
						|
{
 | 
						|
} |