summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Slime.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/Mobs/Slime.h (renamed from src/Mobs/NewSlime.h)12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Mobs/NewSlime.h b/src/Mobs/Slime.h
index 458879a76..e093a8109 100644
--- a/src/Mobs/NewSlime.h
+++ b/src/Mobs/Slime.h
@@ -1,22 +1,22 @@
#pragma once
-#include "NewMonster.h"
+#include "Monster.h"
-class cNewSlime :
- public cNewMonster
+class cSlime :
+ public cMonster
{
- typedef cNewMonster super;
+ typedef cMonster super;
public:
/** Creates a slime of the specified size; size can be 1, 2 or 4, with 1 is the smallest and 4 is the tallest. */
- cNewSlime(int a_Size);
+ cSlime(int a_Size);
- CLASS_PROTODEF(cNewSlime)
+ CLASS_PROTODEF(cSlime)
// cAggressiveMonster overrides:
virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) override;