2012-01-29 14:28:19 -05:00
|
|
|
|
|
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
|
2011-10-25 19:46:01 -04:00
|
|
|
#include "cWolf.h"
|
|
|
|
|
2011-12-25 17:47:12 -05:00
|
|
|
cWolf::cWolf()
|
|
|
|
{
|
2011-10-25 19:46:01 -04:00
|
|
|
m_MobType = 95;
|
|
|
|
GetMonsterConfig("Wolf");
|
|
|
|
}
|
|
|
|
|
|
|
|
cWolf::~cWolf()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cWolf::IsA( const char* a_EntityType )
|
|
|
|
{
|
|
|
|
if( strcmp( a_EntityType, "cWolf" ) == 0 ) return true;
|
|
|
|
return cMonster::IsA( a_EntityType );
|
|
|
|
}
|