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