Now using a hunt-and-kill maze algorithm.

This commit is contained in:
Zed A. Shaw 2025-05-18 14:37:43 -04:00
parent 7a0b2f988d
commit 0f8e61797f
4 changed files with 138 additions and 10 deletions

View file

@ -4,4 +4,6 @@
namespace maze {
void recursive_div(matrix::Matrix& map, std::vector<Room>& rooms);
void hunt_and_kill(Matrix& maze, std::vector<Room>& rooms);
}