summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Monster.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/Mobs/Monster.h (renamed from src/Mobs/NewMonster.h)4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Mobs/NewMonster.h b/src/Mobs/Monster.h
index e7dc129c4..b03390930 100644
--- a/src/Mobs/NewMonster.h
+++ b/src/Mobs/Monster.h
@@ -15,7 +15,7 @@
class cClientHandle;
class cWorld;
-class cNewMonster : public cPawn {
+class cMonster : public cPawn {
typedef cPawn super;
public:
/// This identifies individual monster type, as well as their network type-ID
@@ -57,7 +57,7 @@ public:
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);
+ cMonster(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; }
virtual bool IsBaby (void) const { return false; }