summaryrefslogtreecommitdiffstats
path: root/src/MonsterConfig.h
blob: 50979c44a8b2a69cae64893ae9f23562393feb4b (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

#pragma once





// fwd:
class cMonster;





class cMonsterConfig
{
public:
	cMonsterConfig(void);
	~cMonsterConfig();
	
	void AssignAttributes(cMonster * a_Monster, const AString & a_Name);
	
private:
	struct sAttributesStruct;
	struct sMonsterConfigState;
	sMonsterConfigState * m_pState;
	void Initialize();
} ;