raycaster/maze.hpp

7 lines
167 B
C++

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