pub trait MazeGenerator {
    fn generate(&self) -> Maze;
}
Expand description

Trait encapsulating the behavior of a type capable to create mazes.

Required Methods

Implementors