X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fscene.h;h=b8d55963cbad2fdc1d42f57f9b1250c680f6fade;hb=40e6e7cdc59c09befbd2595aea0c6e10428315d4;hp=23bbb28d889c05cb106f137eef696ced279bf20b;hpb=4c53a552c13dbe9d587e34e3cf48e82877d09288;p=supertux.git diff --git a/src/scene.h b/src/scene.h index 23bbb28d8..b8d55963c 100644 --- a/src/scene.h +++ b/src/scene.h @@ -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*/