Changed the background feeding format for the new level format.
[supertux.git] / src / worldmap.h
index 3e03400..10b86d7 100644 (file)
@@ -121,9 +121,9 @@ private:
 
   bool quit;
 
-  Surface* level_sprite;
   Surface* leveldot_green;
   Surface* leveldot_red;
+  Surface* messagedot;
 
   std::string name;
   std::string music;
@@ -160,6 +160,7 @@ public:
 
     /** Message to show in the Map */
     std::string display_map_message;
+    bool passive_message;
 
     /** Go to this world */
     std::string next_worldmap;
@@ -177,6 +178,10 @@ public:
     bool west;
   };
 
+  /** Variables to deal with the passive map messages */
+  Timer passive_message_timer;
+  std::string passive_message;
+
 private:
   std::string map_filename;