blob: a24c96468aa4e7b6df58eddc4c1d0119ef3c69e8 (
plain) (
tree)
|
|
#include "cSilverfish.h"
cSilverfish::cSilverfish()
{
m_MobType = 60;
GetMonsterConfig("Silverfish");
}
cSilverfish::~cSilverfish()
{
}
bool cSilverfish::IsA( const char* a_EntityType )
{
if( strcmp( a_EntityType, "cSilverfish" ) == 0 ) return true;
return cMonster::IsA( a_EntityType );
}
|