diff options
Diffstat (limited to 'src/Mobs/NewWither.h')
-rw-r--r-- | src/Mobs/NewWither.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/Mobs/NewWither.h b/src/Mobs/NewWither.h new file mode 100644 index 000000000..91f824016 --- /dev/null +++ b/src/Mobs/NewWither.h @@ -0,0 +1,31 @@ + +#pragma once + +#include "NewMonster.h" + + + + + +class cNewWither : + public cNewMonster +{ + typedef cNewMonster super; + +public: + cNewWither(void); + + CLASS_PROTODEF(cNewWither) + + /** Returns whether the wither is invulnerable to arrows. */ + bool IsArmored(void) const; + + // cEntity overrides + virtual bool Initialize(cWorld & a_World) override; + virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) override; + +} ; + + + + |