diff options
Diffstat (limited to 'src/Mobs/NewMonster.cpp')
-rw-r--r-- | src/Mobs/NewMonster.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Mobs/NewMonster.cpp b/src/Mobs/NewMonster.cpp new file mode 100644 index 000000000..14fa54607 --- /dev/null +++ b/src/Mobs/NewMonster.cpp @@ -0,0 +1,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) +{ +} |