1
0
cuberite-2a/source/MonsterConfig.h

17 lines
279 B
C
Raw Normal View History

#pragma once
class cMonster;
class cMonsterConfig
{
public:
cMonsterConfig(void);
~cMonsterConfig();
void AssignAttributes(cMonster *m, const char* n);
private:
struct sAttributesStruct;
struct sMonsterConfigState;
sMonsterConfigState* m_pState;
void Initialize();
};