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

            
                    
 





                       
 

                               
       
                                                                                                                                                                   
 
                                                                 


                                                                   
 

                                                                           


   
 
 

#pragma once

#include "Monster.h"





class cPassiveMonster :
	public cMonster
{
	typedef cMonster super;
	
public:
	cPassiveMonster(const AString & a_ConfigName, eType a_MobType, const AString & a_SoundHurt, const AString & a_SoundDeath, double a_Width, double a_Height);

	virtual void Tick(float a_Dt, cChunk & a_Chunk) override;

	/// When hit by someone, run away
	virtual void DoTakeDamage(TakeDamageInfo & a_TDI) override;

	virtual const cItem GetFollowedItem(void) const { return cItem(); }

} ;