Example #1
0
        /// <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);
        }