Bug 508: Make PlayerStatus::reset reset displayed_coins.
[supertux.git] / src / supertux / player_status.hpp
index aebee17..2ad2836 100644 (file)
@@ -34,7 +34,7 @@ enum BonusType {
 class DrawingContext;
 
 /**
- * This class memorizes player status between different game sessions (for
+ * This class keeps player status between different game sessions (for
  * example when switching maps in the worldmap)
  */
 class PlayerStatus
@@ -58,6 +58,8 @@ public:
   int max_ice_bullets; /**< maximum number of ice bullets in play */
 
 private:
+  int displayed_coins;
+  int displayed_coins_frame;
   SurfacePtr coin_surface;
 
 private: