diff options
Diffstat (limited to 'source/cSignEntity.cpp')
-rw-r--r-- | source/cSignEntity.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/source/cSignEntity.cpp b/source/cSignEntity.cpp index 2c82563f1..beac869c8 100644 --- a/source/cSignEntity.cpp +++ b/source/cSignEntity.cpp @@ -1,5 +1,7 @@ +
+#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
+
#include "cSignEntity.h"
-#include "cMCLogger.h"
#include "cPlayer.h"
#include "cClientHandle.h"
@@ -11,6 +13,10 @@ #include <json/json.h>
+
+
+
+
cSignEntity::cSignEntity(ENUM_BLOCK_ID a_BlockType, int a_X, int a_Y, int a_Z, cChunk* a_Chunk)
: cBlockEntity(a_BlockType, a_X, a_Y, a_Z, a_Chunk)
{
|