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

29 lines
424 B
C
Raw Normal View History

2020-04-04 11:44:17 +00:00
#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;
} ;