summaryrefslogtreecommitdiffstats
path: root/src/Entities/Pawn.h
blob: e76337d86f0aa22382e55f45cd1c009c75cecaaf (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

#pragma once

#include "Entity.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);

protected:
	bool m_bBurnable;
} ;  // tolua_export