added object remove_listener so that you can get a message if some objects are remove...
[supertux.git] / src / scene.h
index 23bbb28..b8d5596 100644 (file)
@@ -21,7 +21,7 @@
 #define SUPERTUX_SCENE_H
 
 #include "video/surface.h"
-#include "special/timer.h"
+#include "timer.h"
 
 #define FRAME_RATE 10 // 100 Frames per second (10ms)
 
@@ -37,8 +37,9 @@ struct PlayerStatus
   int max_score_multiplier;
 
   PlayerStatus();
-
   void reset();
+  void incLives();
+  void incCoins();
 };
 
 std::string bonus_to_string(PlayerStatus::BonusType b);
@@ -46,6 +47,4 @@ PlayerStatus::BonusType string_to_bonus(const std::string& str);
 
 extern PlayerStatus player_status;
 
-extern unsigned int global_frame_counter;
-
 #endif /*SUPERTUX_SCENE_H*/