diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-05-28 19:57:35 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-05-28 20:29:17 +0300 |
commit | bcc91d04a8be00ec347fc2fa84f4bd4c50e65a56 (patch) | |
tree | 5106310d5bef8484b6875b1c8d53e24086068fde /src/resources/monsterdb.h | |
parent | 74bccec70cf17b038a9add58b37d85f91ad04015 (diff) | |
download | plus-bcc91d04a8be00ec347fc2fa84f4bd4c50e65a56.tar.gz plus-bcc91d04a8be00ec347fc2fa84f4bd4c50e65a56.tar.bz2 plus-bcc91d04a8be00ec347fc2fa84f4bd4c50e65a56.tar.xz plus-bcc91d04a8be00ec347fc2fa84f4bd4c50e65a56.zip |
Add support for include in monsters.xml
Diffstat (limited to 'src/resources/monsterdb.h')
-rw-r--r-- | src/resources/monsterdb.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/resources/monsterdb.h b/src/resources/monsterdb.h index 4d88320b5..426228388 100644 --- a/src/resources/monsterdb.h +++ b/src/resources/monsterdb.h @@ -25,6 +25,8 @@ #include "localconsts.h" +#include <string> + class BeingInfo; /** @@ -36,6 +38,8 @@ namespace MonsterDB void unload(); + void loadXmlFile(const std::string &fileName); + BeingInfo *get(const int id) A_WARN_UNUSED; } |