aboutsummaryrefslogtreecommitdiff
path: root/map.h
diff options
context:
space:
mode:
authorKirill Petrashin <kirill8201@yandex.ru>2026-04-04 15:41:19 +0300
committerKirill Petrashin <kirill8201@yandex.ru>2026-04-04 15:41:19 +0300
commit04d6b474f928775ea0019928fdfbf08ecaae0997 (patch)
tree4f1b49b7ea82f905e6abcd53b6a0a960e882bf92 /map.h
parente2054e48107e2866f282d04aaf70cfc0fac178a3 (diff)
downloadastar-04d6b474f928775ea0019928fdfbf08ecaae0997.tar.xz
Poorly implement the map editor
Diffstat (limited to 'map.h')
-rw-r--r--map.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/map.h b/map.h
index eb8ea9b..ecebbb9 100644
--- a/map.h
+++ b/map.h
@@ -51,4 +51,8 @@ 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_copy(Map src, size_t src_w, size_t src_h, Map dest, size_t dest_w, size_t dest_h);
+
#endif /*MAP_H_ */