aboutsummaryrefslogtreecommitdiff
path: root/map.h
diff options
context:
space:
mode:
authorKirill Petrashin <kirill8201@yandex.ru>2026-03-14 21:00:51 +0300
committerKirill Petrashin <kirill8201@yandex.ru>2026-03-14 21:00:51 +0300
commitd0b1a2ab1a6f5c004d675d700181b16385a30b04 (patch)
tree1da501dd9a52654e246cde8969e48b026a8adb47 /map.h
parent8d165ccf784dd7a3afe35b68339f2b536591362c (diff)
Improve rendering
Diffstat (limited to 'map.h')
-rw-r--r--map.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/map.h b/map.h
index b06da7c..7cea584 100644
--- a/map.h
+++ b/map.h
@@ -6,7 +6,6 @@
enum MapTile_e {
EMPTY = 0,
- GOAL,
WALL,
};
@@ -36,6 +35,6 @@ unsigned int neighbours(Position neighbour_array[], Position pos, size_t width,
Map rbt_maze_map(size_t width, size_t height, unsigned int seed);
// Draw the map. Bet you didn't expect that.
-void draw_map(Map map, int width, int height, Position start);
+void draw_map(Map map, size_t width, size_t height, Position start, Position goal);
#endif //MAP_H_