* The "time needed" statistic now works again. You might need to delete your savegame...
[supertux.git] / src / object / display_effect.hpp
index 612386a..eec9777 100644 (file)
@@ -17,6 +17,8 @@ public:
     void fade_in(float fadetime);
     void set_black(bool enabled);
     bool is_black();
+    void sixteen_to_nine();
+    void four_to_three();
 
 private:
     enum FadeType {
@@ -26,6 +28,9 @@ private:
     float fadetime;
     float fading;
     bool black;
+    bool borders_fading;
+    bool borders_active;
+    float border_size;
 };
 
 #endif