diff options
Diffstat (limited to 'src/Mobs/WitherSkeleton.h')
-rw-r--r-- | src/Mobs/WitherSkeleton.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/Mobs/WitherSkeleton.h b/src/Mobs/WitherSkeleton.h new file mode 100644 index 000000000..c77d06822 --- /dev/null +++ b/src/Mobs/WitherSkeleton.h @@ -0,0 +1,28 @@ + +#pragma once + +#include "AggressiveMonster.h" + + + + + +class cWitherSkeleton : + public cAggressiveMonster +{ + typedef cAggressiveMonster super; + +public: + cWitherSkeleton(void); + + CLASS_PROTODEF(cWitherSkeleton) + + virtual bool Attack(std::chrono::milliseconds a_Dt) override; + virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = nullptr) override; + virtual void SpawnOn(cClientHandle & a_ClientHandle) override; + +} ; + + + + |