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

            
                              
 





                                 
 
                                         
 
       

                     
                              
 
                                                                                       
                                                                     

                                                    


   
 
 

#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 bool Attack(std::chrono::milliseconds a_Dt) override;

	bool IsCharging(void) const {return false; }
} ;