diff options
| author | Kirill Petrashin <kirill8201@yandex.ru> | 2026-03-22 11:25:36 +0300 |
|---|---|---|
| committer | Kirill Petrashin <kirill8201@yandex.ru> | 2026-03-22 11:25:36 +0300 |
| commit | b0b6aecd5cb3a9a02376ec071699f827feee6934 (patch) | |
| tree | cc4463ef81a5f376ca3cc1b4164f5d0a6aa71303 /structs.h | |
| parent | 596eeed9dd378a8994778e03319b538206672bec (diff) | |
Add rendering of visited tiles
Diffstat (limited to 'structs.h')
| -rw-r--r-- | structs.h | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -18,10 +18,11 @@ typedef enum MapTile_e MapTile; enum Colors_e { EMPTY_COLOR = 1, - GOAL_COLOR = 2, - WALL_COLOR = 3, - START_COLOR = 4, - PATH_COLOR = 5, + VISITED_COLOR = 2, + GOAL_COLOR = 3, + WALL_COLOR = 4, + START_COLOR = 5, + PATH_COLOR = 6, }; /* A map is a 2D array of MapTiles. |
