summaryrefslogtreecommitdiffstats
path: root/src/MonsterConfig.h
blob: 371d324c2143fc2d996cbf901775e2a2152e9f23 (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();
} ;