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 16:45:45 -05:00
public:
cEnderDragon(void);
CLASS_PROTODEF(cEnderDragon)
2016-02-05 16:45:45 -05:00
2014-10-20 16:55:07 -04:00
virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = nullptr) override;
} ;