diff options
Diffstat (limited to 'source/cSilverfish.cpp')
-rw-r--r-- | source/cSilverfish.cpp | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/source/cSilverfish.cpp b/source/cSilverfish.cpp deleted file mode 100644 index 7302934b6..000000000 --- a/source/cSilverfish.cpp +++ /dev/null @@ -1,25 +0,0 @@ - -#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 ); -} - |