2012-06-14 13:06:06 +00:00
|
|
|
|
|
|
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
|
|
2012-09-23 22:09:57 +00:00
|
|
|
#include "Pawn.h"
|
2012-06-14 13:06:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-01 10:39:56 +00:00
|
|
|
cPawn::cPawn(eEntityType a_EntityType, double a_Width, double a_Height)
|
|
|
|
|
: cEntity(a_EntityType, 0, 0, 0, a_Width, a_Height)
|
2012-06-14 13:06:06 +00:00
|
|
|
, m_bBurnable(true)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|