summaryrefslogtreecommitdiffstats
path: root/source/cSilverfish.cpp
blob: 7302934b6b0bab44f0b6f4ba9a74420216fd3110 (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 );
}