aboutsummaryrefslogtreecommitdiff
path: root/bmp.h
diff options
context:
space:
mode:
Diffstat (limited to 'bmp.h')
-rw-r--r--bmp.h11
1 files changed, 11 insertions, 0 deletions
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_ */