aboutsummaryrefslogtreecommitdiff
path: root/structs.h
diff options
context:
space:
mode:
authorKirill Petrashin <kirill8201@yandex.ru>2026-03-22 11:25:36 +0300
committerKirill Petrashin <kirill8201@yandex.ru>2026-03-22 11:25:36 +0300
commitb0b6aecd5cb3a9a02376ec071699f827feee6934 (patch)
treecc4463ef81a5f376ca3cc1b4164f5d0a6aa71303 /structs.h
parent596eeed9dd378a8994778e03319b538206672bec (diff)
Add rendering of visited tiles
Diffstat (limited to 'structs.h')
-rw-r--r--structs.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/structs.h b/structs.h
index 8e5f28e..2c461fc 100644
--- a/structs.h
+++ b/structs.h
@@ -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.