public Maze GenerateMaze(string name, int rows, int cols) { Maze maze = this.mazeGenerator.Generate(rows, cols); return(maze); }