Exemple #1
0
        public Maze(int width, int height)
        {
            this.rows    = width;
            this.columns = height;

            Cells = new DisjointSet(MazeSize);
        }
Exemple #2
0
        public Maze()
        {
            this.rows    = DEFAULTSIZE;
            this.columns = DEFAULTSIZE;

            Cells = new DisjointSet(MazeSize);

            AddEdges();
        }