summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/Mobs/NewMonster.cpp7
-rw-r--r--src/Mobs/NewMonster.h6
2 files changed, 12 insertions, 1 deletions
diff --git a/src/Mobs/NewMonster.cpp b/src/Mobs/NewMonster.cpp
index 14fa54607..cd63fcb6a 100644
--- a/src/Mobs/NewMonster.cpp
+++ b/src/Mobs/NewMonster.cpp
@@ -1,5 +1,6 @@
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
#include "NewMonster.h"
+#include "../ClientHandle.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)
@@ -8,3 +9,9 @@ cNewMonster::cNewMonster(const AString & a_ConfigName, eType a_MobType, const AS
, m_SoundDeath(a_SoundDeath)
{
}
+
+void cNewMonster::SpawnOn(cClientHandle & a_Client)
+{
+ a_Client.SendSpawnMob(*this);
+}
+
diff --git a/src/Mobs/NewMonster.h b/src/Mobs/NewMonster.h
index dbc1447ec..9e79d9312 100644
--- a/src/Mobs/NewMonster.h
+++ b/src/Mobs/NewMonster.h
@@ -54,9 +54,13 @@ public:
mtZombiePigman = E_META_SPAWN_EGG_ZOMBIE_PIGMAN,
};
+protected:
+ eType m_MobType;
+public:
cNewMonster(const AString & a_ConfigName, eType a_MobType, const AString & a_SoundHurt, const AString & a_SoundDeath, double a_Width, double a_Height);
+ virtual void SpawnOn(cClientHandle & a_ClientHandle) override;
+ eType GetMobType() const { return m_MobType; }
protected:
- eType m_MobType;
AString m_SoundHurt;
AString m_SoundDeath;