Maze Builder Docs 7.5.6
Loading...
Searching...
No Matches
binary_tree.h
Go to the documentation of this file.
1#ifndef BINARY_TREE_H
2#define BINARY_TREE_H
3
5
6namespace mazes
7{
8
9 class grid_interface;
10 class randomizer;
11
16 {
17
18 public:
23 bool run(grid_interface *g, randomizer &rng) const noexcept override;
24
25 private:
26 };
27}
28#endif // BINARY_TREE_H
Interface for runnable algorithms.
Definition algo_interface.h:16
Binary tree algorithm for generating mazes.
Definition binary_tree.h:16
bool run(grid_interface *g, randomizer &rng) const noexcept override
Run the binary tree algorithm.
Interface for the grid class.
Definition grid_interface.h:20
Provides random-number generating capabilities.
Definition randomizer.h:17
Namespace for the maze builder.
Definition algo_interface.h:6