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

            
                    


                                             

              
                       
 
                               
 
       
                     
 
                              
 
                                                                                       







                                                         
   
#pragma once

#include "Monster.h"
#include "Behaviors/BehaviorAttackerRanged.h"
#include "Behaviors/BehaviorDoNothing.h"
#include "Behaviors/BehaviorAggressive.h"

class cBlaze :
	public cMonster
{
	typedef cMonster super;

public:
	cBlaze(void);

	CLASS_PROTODEF(cBlaze)

	virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = nullptr) override;

private:
	// tick behaviors
	cBehaviorAttackerRanged m_BehaviorAttackerRanged;
	cBehaviorDoNothing m_BehaviorDoNothing;

	// other behaviors
	cBehaviorAggressive m_BehaviorAggressive;
} ;