diff options
Diffstat (limited to 'map.h')
| -rw-r--r-- | map.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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_ |
