-Started to move stuff from library back to main game
[supertux.git] / src / object / tilemap.h
index 2c1960a..8f389c0 100644 (file)
@@ -23,7 +23,7 @@
 #include <vector>
 #include <stdint.h>
 
-#include "special/game_object.h"
+#include "game_object.h"
 #include "serializable.h"
 #include "math/vector.h"
 
@@ -93,7 +93,8 @@ public:
   }
 
 private:
-  std::vector<uint32_t> tiles;
+  typedef std::vector<uint32_t> Tiles;
+  Tiles tiles;
   
 private:
   TileManager* tilemanager;