diff options
| author | Kirill Petrashin <kirill8201@yandex.ru> | 2026-03-28 20:19:52 +0300 |
|---|---|---|
| committer | Kirill Petrashin <kirill8201@yandex.ru> | 2026-03-28 20:19:52 +0300 |
| commit | fc29c9bf10ebf471708caecdfed030ec78c915cb (patch) | |
| tree | 9051000266f524c07f3ee97f3ea943130fc2cf16 /bmp.h | |
| parent | 1f0dd604952e39d030367b2bbf45b69f8c63cc5b (diff) | |
| download | astar-fc29c9bf10ebf471708caecdfed030ec78c915cb.tar.xz | |
Add basic BMP output, not sure why
Diffstat (limited to 'bmp.h')
| -rw-r--r-- | bmp.h | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -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_ */ |
