コード例 #1
0
ファイル: MatrixMaze.cs プロジェクト: vasuperniss/AMaze
        /// <summary>
        /// Creates the maze change start position.
        /// </summary>
        /// <returns></returns>
        /// <exception cref="System.NotImplementedException"></exception>
        public override IMaze CreateMazeChangeStartPosition()
        {
            MatrixMaze newMaze = new MatrixMaze(this);

            newMaze.ChangeStartPosition();
            return(newMaze);
        }