fe6fa23a97
* Implemented suggestions
28 lines
315 B
C++
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; }
|
|
} ;
|
|
|
|
|
|
|
|
|