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

            
                              
 





                                 
 

                                         
       
                                                                                                                                                                             





                                                                   
 

#pragma once

#include "AggressiveMonster.h"





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

	virtual void DoTakeDamage(TakeDamageInfo & a_TDI) override;
} ;