1
0
Fork 0
cuberite-2a/src/MonsterConfig.h

33 lines
320 B
C
Raw Normal View History

#pragma once
// fwd:
class cMonster;
class cMonsterConfig
{
public:
cMonsterConfig(void);
~cMonsterConfig();
2016-02-05 21:45:45 +00:00
void AssignAttributes(cMonster * a_Monster, const AString & a_Name);
2016-02-05 21:45:45 +00:00
private:
struct sAttributesStruct;
struct sMonsterConfigState;
sMonsterConfigState * m_pState;
void Initialize();
} ;