]> jfr.im git - irc/gameservirc.git/blobdiff - gameserv/level.h
added items to the tavern.dat, added the filename option to the config file
[irc/gameservirc.git] / gameserv / level.h
index 4677059f3971d88e19943a5957d31ae0e803dbbf..988d623903986404eed8595922640b921ac8d88a 100644 (file)
@@ -2,7 +2,8 @@
 #define LEVEL_H
 
 #include <string.h>
-#include "player.h"
+
+class Player;  // Forward declaration
 #include "list.h"
 
 struct range { 
@@ -28,6 +29,7 @@ public:
     range getExp() { return exp; };
     range getHP() { return hp; };
     List<Monster> monsters;
+    Monster master;
 
 private:
     range strength;