summaryrefslogtreecommitdiffstats
path: root/source/Mobs/PassiveMonster.h
blob: 908bb0ce642f66e5c97caf50f1ecb1d62d6b8cd0 (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
24
25
26
27

#pragma once

#include "Monster.h"





class cPassiveMonster :
	public cMonster
{
	typedef cMonster super;
	
public:
	cPassiveMonster(const AString & a_ConfigName, char a_ProtocolMobType, 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;

} ;