X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Flevel_subset.h;h=c6ed9a99594696609d184e38e3e89393a501fa83;hb=db7e44a2f93bd7c0e7477690e7cc30b6d5273b06;hp=7ae6bcd8a5fb2cfda7c23372676a56cf190252ed;hpb=77ee24ee66aa47c208628efe2e40484ce63ffd5b;p=supertux.git diff --git a/src/level_subset.h b/src/level_subset.h index 7ae6bcd8a..c6ed9a995 100644 --- a/src/level_subset.h +++ b/src/level_subset.h @@ -23,7 +23,6 @@ #include #include -#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 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);