blob: 1d4e6b94a0453ad0f5a801a4d1a37efc88cbf003 (
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;
virtual void Attack(float a_Dt) override;
bool IsCharging(void) const {return false; }
} ;
|