Colors are now being loaded from assets/palette.json

This commit is contained in:
Zed A. Shaw 2025-07-17 10:50:09 -04:00
parent 48a7f72411
commit f4fa50a413
13 changed files with 113 additions and 52 deletions

View file

@ -39,8 +39,8 @@ namespace components {
struct Tile {
wchar_t display;
std::array<uint8_t, 3> foreground;
std::array<uint8_t, 3> background;
std::string foreground;
std::string background;
};
struct GameConfig {