Fix another small logic error
[supertux.git] / src / video / color.hpp
index e3ff678..f0bd76d 100644 (file)
@@ -77,6 +77,15 @@ public:
   }
 
   float red, green, blue, alpha;
+
+  static const Color BLACK;
+  static const Color RED;
+  static const Color GREEN;
+  static const Color BLUE;
+  static const Color CYAN;
+  static const Color MAGENTA;
+  static const Color YELLOW;
+  static const Color WHITE;
 };
 
 #endif