summaryrefslogtreecommitdiffstats
path: root/src/Entities/Pawn.h
blob: a954f4a70a61721c8d5ec03156f4862c220cf565 (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
28
29
30
31
32
33
34

#pragma once

#include "Entity.h"
#include "EntityEffects.h"





// tolua_begin
class cPawn :
	public cEntity
{
	// tolua_end
	typedef cEntity super;
	
public:
	CLASS_PROTODEF(cPawn);

	cPawn(eEntityType a_EntityType, double a_Width, double a_Height);
	
	virtual void Tick(float a_Dt, cChunk & a_Chunk) override;
	
	void AddEntityEffect(cEntityEffect::eType a_EffectType, cEntityEffect a_Effect);
	void RemoveEntityEffect(cEntityEffect::eType a_EffectType);

protected:
	std::map<cEntityEffect::eType, cEntityEffect> m_EntityEffects;
} ;  // tolua_export