aboutsummaryrefslogtreecommitdiff
path: root/bmp.h
blob: 1f28a0e9ad4ec0e1c17eb3b2fecd2a7e53b6b111 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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_ */