summaryrefslogblamecommitdiffstats
path: root/src/Mobs/Ghast.h
blob: 014e9c0dcca4106465cb7677ed7fcc08dbb374e3 (plain) (tree)
1
2
3
4
5
6
7
8
9
            
                    
                                        




              
                       
 
                               
 
       
                     
 
                              
 
                                                                                       
 
                                                    


                                               


   
 
 
#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;
} ;