Maze Builder Docs 7.5.6
Loading...
Searching...
No Matches
stringify.h
Go to the documentation of this file.
1#ifndef STRINGIFY_H
2#define STRINGIFY_H
3
5
8namespace mazes
9{
12 {
13 public:
18 virtual bool run(grid_interface *g, randomizer &rng) const noexcept override;
19 };
20}
21
22#endif // STRINGIFY_H
Interface for runnable algorithms.
Definition algo_interface.h:16
Interface for the grid class.
Definition grid_interface.h:20
Provides random-number generating capabilities.
Definition randomizer.h:17
Stringify algorithm for maze representation.
Definition stringify.h:12
virtual bool run(grid_interface *g, randomizer &rng) const noexcept override
Run the stringify algorithm.
Namespace for the maze builder.
Definition algo_interface.h:6