summaryrefslogtreecommitdiffstats
path: root/src/Mobs/ZombiePigman.h
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-04-24 22:12:28 +0200
committerMattes D <github@xoft.cz>2014-04-24 22:12:28 +0200
commit85e0b0eae9a6b41fd349ba16534bcc985c9abdfa (patch)
tree287edd174804ca96887f7183ca14a31af5eeb92b /src/Mobs/ZombiePigman.h
parentChanged cByteBuffer constructor to take a size_t instead of int. (diff)
parentFixed class capitalization for the cave spider. (diff)
downloadcuberite-85e0b0eae9a6b41fd349ba16534bcc985c9abdfa.tar
cuberite-85e0b0eae9a6b41fd349ba16534bcc985c9abdfa.tar.gz
cuberite-85e0b0eae9a6b41fd349ba16534bcc985c9abdfa.tar.bz2
cuberite-85e0b0eae9a6b41fd349ba16534bcc985c9abdfa.tar.lz
cuberite-85e0b0eae9a6b41fd349ba16534bcc985c9abdfa.tar.xz
cuberite-85e0b0eae9a6b41fd349ba16534bcc985c9abdfa.tar.zst
cuberite-85e0b0eae9a6b41fd349ba16534bcc985c9abdfa.zip
Diffstat (limited to 'src/Mobs/ZombiePigman.h')
-rw-r--r--src/Mobs/ZombiePigman.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/Mobs/ZombiePigman.h b/src/Mobs/ZombiePigman.h
new file mode 100644
index 000000000..ab3cebf6d
--- /dev/null
+++ b/src/Mobs/ZombiePigman.h
@@ -0,0 +1,25 @@
+#pragma once
+
+#include "PassiveAggressiveMonster.h"
+
+
+
+
+
+class cZombiePigman :
+ public cPassiveAggressiveMonster
+{
+ typedef cPassiveAggressiveMonster super;
+
+public:
+ cZombiePigman(void);
+
+ CLASS_PROTODEF(cZombiePigman);
+
+ virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) override;
+ virtual void KilledBy(cEntity * a_Killer) override;
+} ;
+
+
+
+