moved my personal scons todo to the global one, so that someone else can work on...
[supertux.git] / src / scene.h
index d2fa82f..23bbb28 100644 (file)
 #ifndef SUPERTUX_SCENE_H
 #define SUPERTUX_SCENE_H
 
-#include "texture.h"
-#include "timer.h"
+#include "video/surface.h"
+#include "special/timer.h"
 
 #define FRAME_RATE 10 // 100 Frames per second (10ms)
 
 // Player stats
 struct PlayerStatus
 {
-  int  score;
   int  distros;
   int  lives;
   enum BonusType { NO_BONUS, GROWUP_BONUS, FLOWER_BONUS };
   BonusType bonus;
 
   int  score_multiplier;
+  int max_score_multiplier;
 
   PlayerStatus();
 
@@ -46,7 +46,6 @@ PlayerStatus::BonusType string_to_bonus(const std::string& str);
 
 extern PlayerStatus player_status;
 
-extern float scroll_x, scroll_y;
 extern unsigned int global_frame_counter;
 
 #endif /*SUPERTUX_SCENE_H*/