blob: a2adc21b9c0ad1455ea24cc083dce64c8e104ed3 (
plain) (
tree)
|
|
#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; }
} ;
|