2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
|
2012-09-23 16:53:08 -04:00
|
|
|
#include "Wolf.h"
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2012-12-21 07:21:20 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cWolf::cWolf(void)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
m_MobType = 95;
|
2012-12-21 13:05:34 -05:00
|
|
|
m_SoundHurt = "mob.wolf.hurt";
|
|
|
|
m_SoundDeath = "mob.wolf.death";
|
2012-06-14 09:06:06 -04:00
|
|
|
GetMonsterConfig("Wolf");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-12-21 07:21:20 -05:00
|
|
|
|
|
|
|
|