summaryrefslogblamecommitdiffstats
path: root/src/Mobs/NewMonster.cpp
blob: 14fa546071fc1c6dd8b41f4d254465ff3f1ce80a (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                                                                                                                                   
#include "Globals.h"  // NOTE: MSVC stupidness requires this to be the same across all modules
#include "NewMonster.h"

cNewMonster::cNewMonster(const AString & a_ConfigName, eType a_MobType, const AString & a_SoundHurt, const AString & a_SoundDeath, double a_Width, double a_Height)
	: super(etMonster, a_Width, a_Height)
	, m_MobType(a_MobType)
	, m_SoundHurt(a_SoundHurt)
	, m_SoundDeath(a_SoundDeath)
{
}