diff options
Diffstat (limited to 'src/resources/monsterdb.h')
-rw-r--r-- | src/resources/monsterdb.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/resources/monsterdb.h b/src/resources/monsterdb.h index 8555670b..0a218661 100644 --- a/src/resources/monsterdb.h +++ b/src/resources/monsterdb.h @@ -24,18 +24,16 @@ #include <map> -#include "monsterinfo.h" +class MonsterInfo; /** * Monster information database. */ namespace MonsterDB { - void - load(); + void load(); - void - unload(); + void unload(); const MonsterInfo& get(int id); |