diff options
| author | Sopár Adrián <adrian.sopar@protonmail.com> | 2024-06-20 09:28:14 +0200 |
|---|---|---|
| committer | Sopár Adrián <adrian.sopar@protonmail.com> | 2024-06-20 09:28:14 +0200 |
| commit | 74ea6dc86646cee9915292d73d8c7afef01ef3e0 (patch) | |
| tree | 9a58866f7765dad8ba56f1f40b1fa031e9d2687d /src/maze_solver.h | |
First commit. This is mostly the state of the project as I left it around the end of 2019.HEADmaster
Diffstat (limited to 'src/maze_solver.h')
| -rw-r--r-- | src/maze_solver.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/maze_solver.h b/src/maze_solver.h new file mode 100644 index 0000000..8dac12c --- /dev/null +++ b/src/maze_solver.h @@ -0,0 +1,8 @@ +#ifndef MAZE_SOLVER_H +#define MAZE_SOLVER_H + +#include "maze.h" + +int solve_maze(struct maze *maze, struct point point, struct point *path); + +#endif
\ No newline at end of file |
