summaryrefslogtreecommitdiffstats
path: root/src/Mobs/NewZombie.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Mobs/NewZombie.h')
-rw-r--r--src/Mobs/NewZombie.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/Mobs/NewZombie.h b/src/Mobs/NewZombie.h
new file mode 100644
index 000000000..7388711c6
--- /dev/null
+++ b/src/Mobs/NewZombie.h
@@ -0,0 +1,33 @@
+#pragma once
+
+#include "NewMonster.h"
+
+
+
+
+
+class cNewZombie :
+ public cNewMonster
+{
+ typedef cNewMonster super;
+
+public:
+ cNewZombie(bool a_IsVillagerZombie);
+
+ CLASS_PROTODEF(cNewZombie)
+
+ virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) override;
+
+ bool IsVillagerZombie(void) const { return m_IsVillagerZombie; }
+ bool IsConverting (void) const { return m_IsConverting; }
+
+private:
+
+ bool m_IsVillagerZombie;
+ bool m_IsConverting;
+
+} ;
+
+
+
+