*possible* fix for bugs #453 and #373
[supertux.git] / src / player_status.hpp
index 85ac059..1840ab8 100644 (file)
@@ -22,6 +22,7 @@
 
 #include <memory>
 #include "serializable.hpp"
+#include "video/color.hpp"
 
 namespace lisp{ class Writer; }
 namespace lisp{ class Lisp; }
@@ -41,6 +42,7 @@ class DrawingContext;
  */
 class PlayerStatus : public Serializable
 {
+  static Color text_color;
 public:
   PlayerStatus();
   ~PlayerStatus();
@@ -57,9 +59,6 @@ public:
   int max_fire_bullets; /**< maximum number of fire bullets in play */
   int max_ice_bullets; /**< maximum number of ice bullets in play */
 
-  int score_multiplier;
-  int max_score_multiplier;
-
   void operator= (const PlayerStatus& other);
 
 private: