diff options
Diffstat (limited to '')
-rw-r--r-- | source/Vector3i.cpp | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/source/Vector3i.cpp b/source/Vector3i.cpp index 3e812bf7c..4ce1e2cf3 100644 --- a/source/Vector3i.cpp +++ b/source/Vector3i.cpp @@ -1,16 +1,16 @@ -
-#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 )
-{
+ +#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 ) +{ }
\ No newline at end of file |