blob: 014e9c0dcca4106465cb7677ed7fcc08dbb374e3 (
plain) (
tree)
|
|
#pragma once
#include "Monster.h"
#include "Behaviors/BehaviorDoNothing.h"
class cGhast :
public cMonster
{
typedef cMonster super;
public:
cGhast(void);
CLASS_PROTODEF(cGhast)
virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = nullptr) override;
bool IsCharging(void) const {return false; }
private:
cBehaviorDoNothing m_BehaviorDoNothing;
} ;
|