public Maze(int width, int height) { this.rows = width; this.columns = height; Cells = new DisjointSet(MazeSize); }
public Maze() { this.rows = DEFAULTSIZE; this.columns = DEFAULTSIZE; Cells = new DisjointSet(MazeSize); AddEdges(); }