1
0
cuberite-2a/src/Mobs/EnderDragon.h

26 lines
287 B
C
Raw Normal View History

#pragma once
#include "AggressiveMonster.h"
class cEnderDragon :
public cAggressiveMonster
{
typedef cAggressiveMonster super;
2016-02-05 21:45:45 +00:00
public:
cEnderDragon(void);
CLASS_PROTODEF(cEnderDragon)
2016-02-05 21:45:45 +00:00
2014-10-20 20:55:07 +00:00
virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = nullptr) override;
} ;