예제 #1
0
파일: Maze.cs 프로젝트: Garrut/CPPHuiswerk
        public Maze(int width, int height)
        {
            this.rows    = width;
            this.columns = height;

            Cells = new DisjointSet(MazeSize);
        }
예제 #2
0
파일: Maze.cs 프로젝트: Garrut/CPPHuiswerk
        public Maze()
        {
            this.rows    = DEFAULTSIZE;
            this.columns = DEFAULTSIZE;

            Cells = new DisjointSet(MazeSize);

            AddEdges();
        }