summaryrefslogtreecommitdiffstats
path: root/source/Mobs/Wolf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/Mobs/Wolf.cpp')
-rw-r--r--source/Mobs/Wolf.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/source/Mobs/Wolf.cpp b/source/Mobs/Wolf.cpp
new file mode 100644
index 000000000..bd7fa213b
--- /dev/null
+++ b/source/Mobs/Wolf.cpp
@@ -0,0 +1,20 @@
+
+#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
+
+#include "Wolf.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 );
+}