1
0

cPawn: Remove unused m_bBurnable

This commit is contained in:
archshift 2014-06-06 19:09:33 -07:00
parent 87b1bfaf2a
commit aa7b3f33b9
2 changed files with 0 additions and 2 deletions

View File

@ -9,7 +9,6 @@
cPawn::cPawn(eEntityType a_EntityType, double a_Width, double a_Height)
: cEntity(a_EntityType, 0, 0, 0, a_Width, a_Height)
, m_bBurnable(true)
, m_EntityEffects(std::map<cEntityEffect::eType, cEntityEffect>())
{
}

View File

@ -26,7 +26,6 @@ public:
void RemoveEntityEffect(cEntityEffect::eType a_EffectType);
protected:
bool m_bBurnable;
std::map<cEntityEffect::eType, cEntityEffect> m_EntityEffects;
} ; // tolua_export