summaryrefslogtreecommitdiffstats
path: root/source/Entities/Pawn.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/Entities/Pawn.cpp')
-rw-r--r--source/Entities/Pawn.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/source/Entities/Pawn.cpp b/source/Entities/Pawn.cpp
new file mode 100644
index 000000000..fffefd538
--- /dev/null
+++ b/source/Entities/Pawn.cpp
@@ -0,0 +1,19 @@
+
+#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
+
+#include "Pawn.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)
+{
+}
+
+
+
+
+