2012-11-01 10:56:47 +00:00
|
|
|
|
|
|
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
|
|
|
|
|
|
#include "Bat.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-12-21 11:04:08 +00:00
|
|
|
cBat::cBat(void)
|
2012-11-01 10:56:47 +00:00
|
|
|
{
|
|
|
|
|
m_MobType = 65;
|
2012-12-21 18:05:34 +00:00
|
|
|
m_SoundHurt = "mob.bat.hurt";
|
|
|
|
|
m_SoundDeath = "mob.bat.death";
|
2012-11-01 10:56:47 +00:00
|
|
|
GetMonsterConfig("Bat");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|