aboutsummaryrefslogtreecommitdiff
path: root/src/maze.h
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-01-09 21:47:23 +0100
committerHampusM <hampus@hampusmat.com>2022-01-09 21:47:23 +0100
commit8ceb79db1d0687bba005cef4a77bb889bf7ec3c3 (patch)
treeb7c13359f652506d60c8556ea386ae8d50bfc5bc /src/maze.h
parent097aa95c1f0cb159e7d9d0a3edf9284c421ee298 (diff)
refactor: rewrite to c++
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