diff options
Diffstat (limited to 'src/Mobs/NewZombiePigman.h')
-rw-r--r-- | src/Mobs/NewZombiePigman.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/Mobs/NewZombiePigman.h b/src/Mobs/NewZombiePigman.h new file mode 100644 index 000000000..13a67f4b0 --- /dev/null +++ b/src/Mobs/NewZombiePigman.h @@ -0,0 +1,24 @@ +#pragma once + +#include "NewMonster.h" + + + + + +class cNewZombiePigman : + public cNewMonster +{ + typedef cNewMonster super; + +public: + cNewZombiePigman(void); + + CLASS_PROTODEF(cNewZombiePigman) + + virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) override; +} ; + + + + |