aboutsummaryrefslogtreecommitdiff
path: root/src/maze.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/maze.h')
-rw-r--r--src/maze.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/maze.h b/src/maze.h
deleted file mode 100644
index a3c932c..0000000
--- a/src/maze.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#ifndef MAZE_H
-#define MAZE_H
-
-#include "grid.h"
-#include "position_stack.h"
-
-/**
- * Creates a maze from a grid
- *
- * @param grid A grid
- * @param start_pos Start position
- */
-void grid_to_maze(Grid grid, Position start_pos);
-
-#endif