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