Fixed game crashing when leaving the worldmap
[supertux.git] / src / screen_fade.hpp
index bd78e59..38dbd62 100644 (file)
@@ -1,4 +1,4 @@
-//  $Id: screen.hpp 3327 2006-04-13 15:02:40Z ravu_al_hemio $
+//  $Id$
 //
 //  SuperTux
 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
 #include "screen.hpp"
 
 /**
- * A ScreenFade screen is displayed simultaneously with another screen. This
- * is intended to be used for transitional effects like fade-out or shrink-fade
+ * Screen to be displayed simultaneously with another Screen. 
+ *
+ * This is used for Screen transition effects like a fade-out or a shrink-fade
  */
 class ScreenFade : public Screen
 {
 public:
   virtual ~ScreenFade()
   {}
-  
+
   /// returns true if the effect is completed
   virtual bool done() = 0;
 };
 
 #endif
-