From b0b6aecd5cb3a9a02376ec071699f827feee6934 Mon Sep 17 00:00:00 2001 From: Kirill Petrashin Date: Sun, 22 Mar 2026 11:25:36 +0300 Subject: Add rendering of visited tiles --- structs.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'structs.h') 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. -- cgit v1.2.3