1
0
cuberite-2a/source/Mobs/Ghast.h
Tiger Wang fe6fa23a97 Second round of fixes
* Implemented suggestions
2013-10-09 21:02:59 +01:00

28 lines
315 B
C++

#pragma once
#include "AggressiveMonster.h"
class cGhast :
public cAggressiveMonster
{
typedef cAggressiveMonster super;
public:
cGhast(void);
CLASS_PROTODEF(cGhast);
virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) override;
bool IsCharging(void) const {return false; }
} ;