aebe130299
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1095 0a769ca7-a7f5-676a-18bf-c427514a06d6
33 lines
321 B
C++
33 lines
321 B
C++
|
|
#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();
|
|
} ;
|
|
|
|
|
|
|
|
|