summaryrefslogtreecommitdiffstats
path: root/src/Mobs/PassiveAggressiveMonster.h
blob: a0da50e8e5f6ba304ea0ba61a30fd6bc3633018f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

#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 bool DoTakeDamage(TakeDamageInfo & a_TDI) override;
} ;