]> jfr.im git - irc/gameservirc.git/blobdiff - gameserv/level.h
completed migrating all lists over to STL list
[irc/gameservirc.git] / gameserv / level.h
index 988d623903986404eed8595922640b921ac8d88a..bb25082c6a633875a8032326c880aa3bb69312a5 100644 (file)
@@ -1,10 +1,9 @@
 #ifndef LEVEL_H
 #define LEVEL_H
 
+#include "player.h"
 #include <string.h>
-
-class Player;  // Forward declaration
-#include "list.h"
+#include <list>
 
 struct range { 
     void setRange(char *r);
@@ -28,7 +27,7 @@ public:
     range getGold() { return gold; };
     range getExp() { return exp; };
     range getHP() { return hp; };
-    List<Monster> monsters;
+    list<Monster*> monsters;
     Monster master;
 
 private: