summaryrefslogtreecommitdiffstats
path: root/source/Pawn.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/Pawn.cpp')
-rw-r--r--source/Pawn.cpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/source/Pawn.cpp b/source/Pawn.cpp
new file mode 100644
index 000000000..b58c2b544
--- /dev/null
+++ b/source/Pawn.cpp
@@ -0,0 +1,27 @@
+
+#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
+
+#include "Pawn.h"
+#include "Root.h"
+#include "Server.h"
+#include "World.h"
+#include "Player.h"
+#include "PluginManager.h"
+#include "Vector3d.h"
+#include "BlockID.h"
+#include "Defines.h"
+
+
+
+
+
+cPawn::cPawn(eEntityType a_EntityType, double a_Width, double a_Height)
+ : cEntity(a_EntityType, 0, 0, 0, a_Width, a_Height)
+ , m_bBurnable(true)
+{
+}
+
+
+
+
+