diff options
Diffstat (limited to 'source/cPiston.cpp')
-rw-r--r-- | source/cPiston.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/source/cPiston.cpp b/source/cPiston.cpp index 1104122c8..7fb503a3a 100644 --- a/source/cPiston.cpp +++ b/source/cPiston.cpp @@ -1,3 +1,6 @@ +
+#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
+
#include "cPiston.h"
#include "cRedstone.h"
#include "cChunk.h"
@@ -19,6 +22,10 @@ extern bool g_BlockPistonBreakable[]; #define FAST_FLOOR( x ) ( (x) < 0 ? ((int)x)-1 : ((int)x) )
+
+
+
+
cPiston::cPiston( cWorld* a_World )
:m_World ( a_World )
{
|