From 05ce2c58165dc1566c32c6a661d70bad51e3fe15 Mon Sep 17 00:00:00 2001 From: Max-001 Date: Wed, 8 Jan 2025 15:17:45 +0100 Subject: Added shop items --- src/crepe/api/Color.cpp | 1 + src/crepe/api/Color.h | 1 + 2 files changed, 2 insertions(+) (limited to 'src') 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 -- cgit v1.2.3