diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2025-01-08 15:44:51 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2025-01-08 15:44:51 +0100 |
commit | 94e2988cc8c42e83a4b7b858c48458f997130963 (patch) | |
tree | 633abef48dc65e170b2c184ec68beb4154fcdb2a /src | |
parent | 12cf43dd062f41af226e0ac038b2f2838391015f (diff) | |
parent | 26fe39ef4e633206a9b202d431c969c66052d2ef (diff) |
merge w/ masterloek/game
Diffstat (limited to 'src')
-rw-r--r-- | src/crepe/api/Color.cpp | 1 | ||||
-rw-r--r-- | src/crepe/api/Color.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/crepe/api/Color.cpp b/src/crepe/api/Color.cpp index 1374198..d0e3b35 100644 --- a/src/crepe/api/Color.cpp +++ b/src/crepe/api/Color.cpp @@ -11,3 +11,4 @@ const Color Color::CYAN {0x00, 0xff, 0xff}; const Color Color::YELLOW {0xff, 0xff, 0x00}; const Color Color::MAGENTA {0xff, 0x00, 0xff}; const Color Color::GREY {0x80, 0x80, 0x80}; +const Color Color::GOLD {249, 205, 91}; diff --git a/src/crepe/api/Color.h b/src/crepe/api/Color.h index 22c0c43..dbfd0ed 100644 --- a/src/crepe/api/Color.h +++ b/src/crepe/api/Color.h @@ -19,6 +19,7 @@ struct Color { static const Color YELLOW; static const Color BLACK; static const Color GREY; + static const Color GOLD; }; } // namespace crepe |