diff options
| author | Max-001 <80035972+Max-001@users.noreply.github.com> | 2025-01-08 15:28:25 +0100 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-08 15:28:25 +0100 | 
| commit | 52dab49823377e9ffaf7b583edc102b559e7382a (patch) | |
| tree | d966a39f23ac053c6cc5cee678d55c28f795704f /src | |
| parent | 0b9574bdd6c5968c07bcf165d66032b75649b5da (diff) | |
| parent | e732abef5d0170cacf290de12a402dbd19f31a87 (diff) | |
Merge pull request #114 from lonkaars/max/game2
Max/game2
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 |