From 5dae8f8d10d506abc3c75a1f66c1dfe620c84fc1 Mon Sep 17 00:00:00 2001 From: HampusM Date: Tue, 15 Feb 2022 20:27:51 +0100 Subject: refactor: improve project design --- src/maze.hpp | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 src/maze.hpp (limited to 'src/maze.hpp') 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 -#include - -/** - * 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 -void matrix_to_maze(Matrix *matrix, std::shared_ptr start_pos, - Element space_element, - std::shared_ptr random_gen); - -#include "maze.tpp" -- cgit v1.2.3-18-g5258