1
0

Moved entities into the Entities subfolder.

This commit is contained in:
madmaxoft
2013-08-19 11:39:13 +02:00
parent 539ae20466
commit 1a7912744f
78 changed files with 249 additions and 237 deletions

19
source/Entities/Pawn.cpp Normal file
View File

@@ -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)
{
}