diff options
Diffstat (limited to 'source/MonsterConfig.h')
-rw-r--r-- | source/MonsterConfig.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/source/MonsterConfig.h b/source/MonsterConfig.h new file mode 100644 index 000000000..d1a514b17 --- /dev/null +++ b/source/MonsterConfig.h @@ -0,0 +1,17 @@ +#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(); +};
\ No newline at end of file |