summaryrefslogtreecommitdiffstats
path: root/source/cSilverfish.cpp
blob: c081291815e91878a580efa3f91b3a30f9823081 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

#include "Globals.h"  // NOTE: MSVC stupidness requires this to be the same across all modules

#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 );
}