raycaster/maze.hpp

7 lines
143 B
C++

#pragma once
#include "matrix.hpp"
#include "map.hpp"
namespace maze {
void recursive_div(matrix::Matrix& map, std::vector<Room>& rooms);
}