Maze Builder Docs 6.0.1
Loading...
Searching...
No Matches
algo_interface.h
Go to the documentation of this file.
1#ifndef ALGO_INTERFACE_H
2#define ALGO_INTERFACE_H
3
4#include <memory>
5#include <functional>
6#include <random>
7
9namespace mazes {
10
11class grid_interface;
12
14
19public:
25 virtual bool run(const std::unique_ptr<grid_interface>& g, const std::function<int(int, int)>& get_int, const std::mt19937& rng) const noexcept = 0;
26};
27}
28#endif // ALGO_INTERFACE_H
Interface for the maze generation algorithms.
Definition algo_interface.h:18
virtual bool run(const std::unique_ptr< grid_interface > &g, const std::function< int(int, int)> &get_int, const std::mt19937 &rng) const noexcept=0
Interface method that algorithms implement to generate a maze.
Interface for the grid class.
Definition grid_interface.h:26
Namespace for the maze builder.
Definition algo_interface.h:9