From fc29c9bf10ebf471708caecdfed030ec78c915cb Mon Sep 17 00:00:00 2001 From: Kirill Petrashin Date: Sat, 28 Mar 2026 20:19:52 +0300 Subject: Add basic BMP output, not sure why --- bmp.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 bmp.h (limited to 'bmp.h') diff --git a/bmp.h b/bmp.h new file mode 100644 index 0000000..1f28a0e --- /dev/null +++ b/bmp.h @@ -0,0 +1,11 @@ +#ifndef BMP_H_ +#define BMP_H_ + +#include "map.h" +#include "path.h" +#include "structs.h" +#include "priority_queue.h" + +void map_to_bmp(Map map, size_t map_width, size_t map_height, Position start, Position goal, Path path, char **visited, char *filename); + +#endif /* BMP_H_ */ -- cgit v1.2.3