shorten unstable time
[supertux.git] / src / level_subset.h
index 7ae6bcd..c6ed9a9 100644 (file)
@@ -23,7 +23,6 @@
 
 #include <vector>
 #include <string>
-#include "utils/lispreader.h"
 
 using namespace SuperTux;
 
@@ -32,9 +31,6 @@ using namespace SuperTux;
 class LevelSubset
 {
 private:
-  /** Directory in which the level subset is stored */
-  std::string directory;
-
   /** Level filenames without the leading path ("level1.stl",
       "level3.stl", ...) */
   std::vector<std::string> levels;
@@ -50,12 +46,14 @@ public:
   void add_level(const std::string& name);
 
   std::string get_level_filename(unsigned int i);
+  std::string get_worldmap_filename();
   int get_num_levels() const;
 
   std::string name;
   std::string title;
   std::string description;
   bool hide_from_contribs;
+  bool has_worldmap;
 
 private:
   void read_info_file(const std::string& info_file);