class EE::System::RectColors

#include <color.hpp>

class RectColors {
public:
    // fields

    Color TopLeft;
    Color TopRight;
    Color BottomLeft;
    Color BottomRight;

    // construction

    RectColors();
    RectColors(const Color& color);
    RectColors(const Color& topLeft, const Color& topRight, const Color& bottomLeft, const Color& bottomRight);
};