From c9ac361e1282bfaa895a1456222bca2d86253a96 Mon Sep 17 00:00:00 2001 From: Kirill Petrashin Date: Tue, 14 Apr 2026 22:41:56 +0300 Subject: Implement live pathfinding in map editor --- map.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'map.h') diff --git a/map.h b/map.h index 23a8773..a08fadb 100644 --- a/map.h +++ b/map.h @@ -60,7 +60,7 @@ void map_free(Map map, size_t height); void print_map_out(Map map, size_t width, size_t height); -void map_editor(Map *map, size_t *width, size_t *height, Position *start, Position *goal); +void map_editor(Map *map, size_t *width, size_t *height, Position *start, Position *goal, int dirs); void map_copy(Map src, size_t src_w, size_t src_h, Map dest, size_t dest_w, size_t dest_h); -- cgit v1.2.3