386d58b586
git-svn-id: http://mc-server.googlecode.com/svn/trunk@3 0a769ca7-a7f5-676a-18bf-c427514a06d6
18 lines
325 B
C++
18 lines
325 B
C++
#pragma once
|
|
|
|
class cMonster;
|
|
class cMonsterConfig
|
|
{
|
|
public:
|
|
cMonsterConfig(int TypeC);
|
|
~cMonsterConfig();
|
|
cMonsterConfig *Get();
|
|
|
|
void AssignAttributes(cMonster *m, const char* n);
|
|
|
|
private:
|
|
struct sAttributesStruct;
|
|
struct sMonsterConfigState;
|
|
sMonsterConfigState* m_pState;
|
|
void Initialize();
|
|
}; |