Removed a global variable
[supertux.git] / src / level.hpp
index 1f988c8..f91ab3c 100644 (file)
@@ -23,6 +23,7 @@
 
 #include <vector>
 #include <string>
+#include "statistics.hpp"
 
 class Sector;
 
@@ -37,6 +38,7 @@ public:
   std::string author;
   typedef std::vector<Sector*> Sectors;
   Sectors sectors;
+  Statistics stats;
 
 public:
   Level();