X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fscene.h;h=23bbb28d889c05cb106f137eef696ced279bf20b;hb=b524515944583916655a9f2cf1a667e55e7ed4ce;hp=57745d2d5902e841a14ad01737e3203745444c23;hpb=c79b901309bf5e0544fef1e92d264f51402f4370;p=supertux.git diff --git a/src/scene.h b/src/scene.h index 57745d2d5..23bbb28d8 100644 --- a/src/scene.h +++ b/src/scene.h @@ -20,21 +20,21 @@ #ifndef SUPERTUX_SCENE_H #define SUPERTUX_SCENE_H -#include "screen/surface.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();