aboutsummaryrefslogtreecommitdiff
path: root/src/maze.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/maze.hpp')
-rw-r--r--src/maze.hpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/maze.hpp b/src/maze.hpp
deleted file mode 100644
index 650e60a..0000000
--- a/src/maze.hpp
+++ /dev/null
@@ -1,22 +0,0 @@
-#pragma once
-
-#include "engine/matrix.hpp"
-#include "engine/vector2.hpp"
-#include "random_generator.hpp"
-#include <memory>
-#include <string>
-
-/**
- * Turns a matrix into a maze.
- *
- * @param matrix A matrix
- * @param start_pos The start position in the matrix
- * @param space_element A matrix element used to indicate a space in a maze
- * @param random_gen A pseudo-random number generator
- */
-template <typename Element>
-void matrix_to_maze(Matrix<Element> *matrix, std::shared_ptr<Vector2> start_pos,
- Element space_element,
- std::shared_ptr<RandomNumberGenerator> random_gen);
-
-#include "maze.tpp"