summaryrefslogtreecommitdiffstats
path: root/src/Mobs/WitherSkeleton.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Mobs/WitherSkeleton.h')
-rw-r--r--src/Mobs/WitherSkeleton.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/Mobs/WitherSkeleton.h b/src/Mobs/WitherSkeleton.h
index 8aa7574df..c4a710bbf 100644
--- a/src/Mobs/WitherSkeleton.h
+++ b/src/Mobs/WitherSkeleton.h
@@ -7,21 +7,18 @@
-class cWitherSkeleton:
- public cAggressiveMonster
+class cWitherSkeleton : public cAggressiveMonster
{
using Super = cAggressiveMonster;
-public:
-
+ public:
cWitherSkeleton();
CLASS_PROTODEF(cWitherSkeleton)
-private:
-
+ private:
virtual bool Attack(std::chrono::milliseconds a_Dt) override;
virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = nullptr) override;
virtual bool IsNetherNative(void) override { return true; }
virtual void SpawnOn(cClientHandle & a_ClientHandle) override;
-} ;
+};