diff options
Diffstat (limited to '')
-rw-r--r-- | source/cWolf.cpp | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/source/cWolf.cpp b/source/cWolf.cpp index 8226b06ac..fa693bcbd 100644 --- a/source/cWolf.cpp +++ b/source/cWolf.cpp @@ -1,20 +1,20 @@ -
-#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 );
-}
+ +#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 ); +} |