summaryrefslogtreecommitdiffstats
path: root/source/Mobs/PassiveAggressiveMonster.h
blob: abb6a7abd1e5bc623c35dcbb4751cd83790ffab6 (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, char a_ProtocolMobType, const AString & a_SoundHurt, const AString & a_SoundDeath);

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