diff options
Diffstat (limited to 'source/Vector3d.cpp')
-rw-r--r-- | source/Vector3d.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/source/Vector3d.cpp b/source/Vector3d.cpp index b2c47972a..075034605 100644 --- a/source/Vector3d.cpp +++ b/source/Vector3d.cpp @@ -1,6 +1,13 @@ +
+#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
+
#include "Vector3d.h"
#include "Vector3f.h"
+
+
+
+
Vector3d::Vector3d(const Vector3f & v )
: x( v.x )
, y( v.y )
|