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 /map.h | |
| parent | 596eeed9dd378a8994778e03319b538206672bec (diff) | |
Add rendering of visited tiles
Diffstat (limited to 'map.h')
| -rw-r--r-- | map.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -36,7 +36,7 @@ Map file_plaintext_map(char *filename, size_t *width, size_t *height, Position * /* Draw the map. Bet you didn't expect that. * path could be NULL to draw a map with no path */ -void draw_map(Map map, size_t width, size_t height, int offset_x, int offset_y, Position start, Position goal, Path path); +void draw_map(Map map, size_t width, size_t height, int offset_x, int offset_y, Position start, Position goal, Path path, char visited[height][width]); void print_map_out(Map map, size_t width, size_t height); |
