diff options
Diffstat (limited to 'source/cWolf.cpp')
-rw-r--r-- | source/cWolf.cpp | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/source/cWolf.cpp b/source/cWolf.cpp deleted file mode 100644 index fa693bcbd..000000000 --- a/source/cWolf.cpp +++ /dev/null @@ -1,20 +0,0 @@ - -#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules - -#include "cWolf.h" - -cWolf::cWolf() -{ - m_MobType = 95; - GetMonsterConfig("Wolf"); -} - -cWolf::~cWolf() -{ -} - -bool cWolf::IsA( const char* a_EntityType ) -{ - if( strcmp( a_EntityType, "cWolf" ) == 0 ) return true; - return cMonster::IsA( a_EntityType ); -} |