removed lib dir
[supertux.git] / src / level_subset.h
index 7ae03e2..40f4b75 100644 (file)
 //  along with this program; if not, write to the Free Software
 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 //  02111-1307, USA.
-
 #ifndef SUPERTUX_LEVEL_SUBSET_H
 #define SUPERTUX_LEVEL_SUBSET_H
 
 #include <vector>
 #include <string>
 
-using namespace SuperTux;
-
 /** This type holds meta-information about a level-subset. 
     It could be extended to handle manipulation of subsets. */
 class LevelSubset
@@ -46,12 +43,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);