summaryrefslogtreecommitdiffstats
path: root/source/MonsterConfig.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--source/MonsterConfig.h19
1 files changed, 17 insertions, 2 deletions
diff --git a/source/MonsterConfig.h b/source/MonsterConfig.h
index d1a514b17..371d324c2 100644
--- a/source/MonsterConfig.h
+++ b/source/MonsterConfig.h
@@ -1,17 +1,32 @@
+
#pragma once
+
+
+
+
+// fwd:
class cMonster;
+
+
+
+
+
class cMonsterConfig
{
public:
cMonsterConfig(void);
~cMonsterConfig();
- void AssignAttributes(cMonster *m, const char* n);
+ void AssignAttributes(cMonster * a_Monster, const AString & a_Name);
private:
struct sAttributesStruct;
struct sMonsterConfigState;
sMonsterConfigState* m_pState;
void Initialize();
-}; \ No newline at end of file
+} ;
+
+
+
+