removed old data and contrib, new files will follow
[supertux.git] / src / tile_manager.h
index db8a70c..d153753 100644 (file)
@@ -64,6 +64,7 @@ public:
 
   const Tile* get(uint32_t id) const
   {
+    //FIXME: Commenting out tiles in supertux.stgt makes tiles.size() fail - it's being set to the first tile commented out.
     assert(id < tiles.size());
     Tile* tile = tiles[id];
     if(!tile) {
@@ -81,6 +82,16 @@ public:
   {
     return tiles.size();
   }
+
+  int get_default_width() const
+  {
+    return 32;
+  }
+
+  int get_default_height() const
+  {
+    return 32;
+  }
 };
 
 #endif