orange not defined

This commit is contained in:
SushilRagoonath 2022-07-18 19:09:54 +02:00 committed by GitHub
parent e93da13b4b
commit a7f2fa565c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -240,6 +240,7 @@ namespace Blah
inline const Color Color::green = Color( 0, 255, 0);
inline const Color Color::blue = Color( 0, 0, 255);
inline const Color Color::yellow = Color(255, 255, 0);
inline const Color Color::orange = Color(255, 165, 0);
inline const Color Color::purple = Color(255, 0, 255);
inline const Color Color::teal = Color( 0, 255, 255);
}