Fixed levels on contribs menu.
[supertux.git] / src / level.h
index 0068fbe..9a5d3db 100644 (file)
 #include <map>
 #include <string>
 
+using namespace SuperTux;
+
 class Sector;
+
+namespace SuperTux {
 class LispReader;
+}
 
 class Level
 {
@@ -56,6 +61,9 @@ public:
 
   Sector* get_sector(const std::string& name);
 
+  int get_total_badguys();
+  int get_total_coins();
+
 private:
   void load_old_format(LispReader& reader);
 };