Maze constructor

Maze(
  1. List<List<Tile>> tiles,
  2. Tile start,
  3. Tile goal
)

Implementation

Maze(this.tiles, this.start, this.goal);