Made invincibility sparkle a particle effect
[supertux.git] / src / textscroller.hpp
index c7803ea..b9c534c 100644 (file)
@@ -37,7 +37,7 @@ class Surface;
 class InfoBoxLine
 {
 private:
-  enum LineType { NORMAL, NORMAL_LEFT, SMALL, HEADING, REFERENCE, IMAGE, SPACER};
+  enum LineType { NORMAL, NORMAL_LEFT, SMALL, HEADING, REFERENCE, IMAGE};
   LineType lineType;
   Font* font;
   std::string text;
@@ -92,6 +92,7 @@ private:
   std::auto_ptr<Surface> background;
   std::vector<InfoBoxLine*> lines;
   float scroll;
+  bool fading;
 };
 
 #endif