1
0
Fork 0
cuberite-2a/src/Mobs/WitherSkeleton.h

28 lines
486 B
C
Raw Normal View History

2020-04-04 11:44:17 +00:00
#pragma once
#include "AggressiveMonster.h"
2020-04-13 16:38:06 +00:00
class cWitherSkeleton:
2020-04-04 11:44:17 +00:00
public cAggressiveMonster
{
2020-04-13 16:38:06 +00:00
using Super = cAggressiveMonster;
2020-04-04 11:44:17 +00:00
public:
2020-04-13 16:38:06 +00:00
cWitherSkeleton();
2020-04-04 11:44:17 +00:00
CLASS_PROTODEF(cWitherSkeleton)
private:
2020-04-04 11:44:17 +00:00
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; }
2020-04-04 11:44:17 +00:00
virtual void SpawnOn(cClientHandle & a_ClientHandle) override;
} ;