コード例 #1
0
ファイル: Game.cs プロジェクト: KodernPl/PuzzleGame
        /// <summary>
        /// Make solution string
        /// </summary>
        /// <returns></returns>
        public string MakeSolution()
        {
            string solution;
            Puzzle newPuzzle = puzzle.Clone();

            solution = newPuzzle.SolvePuzzle();
            return(solution);
        }