diff --git a/60 Mastermind/csharp/Game/src/Program.cs b/60 Mastermind/csharp/Game/src/Program.cs index e7419084..13f525d7 100644 --- a/60 Mastermind/csharp/Game/src/Program.cs +++ b/60 Mastermind/csharp/Game/src/Program.cs @@ -22,6 +22,8 @@ namespace Game for (var round = 1; round <= rounds; ++round) { + View.ShowStartOfRound(round); + if (!HumanTakesTurn()) return; diff --git a/60 Mastermind/csharp/Game/src/View.cs b/60 Mastermind/csharp/Game/src/View.cs index 7dcb3429..ea8bd898 100644 --- a/60 Mastermind/csharp/Game/src/View.cs +++ b/60 Mastermind/csharp/Game/src/View.cs @@ -18,15 +18,6 @@ namespace Game Console.WriteLine(); } - public static void ShowStartOfRound(int roundNumber) - { - Console.WriteLine(); - Console.WriteLine($"ROUND NUMBER {roundNumber} ----"); - Console.WriteLine(); - Console.WriteLine("GUESS MY COMBINATION."); - Console.WriteLine(); - } - public static void ShowTotalPossibilities(int possibilities) { Console.WriteLine($"TOTAL POSSIBILITIES = {possibilities}"); @@ -45,6 +36,15 @@ namespace Game Console.WriteLine(); } + public static void ShowStartOfRound(int roundNumber) + { + Console.WriteLine(); + Console.WriteLine($"ROUND NUMBER {roundNumber} ----"); + Console.WriteLine(); + Console.WriteLine("GUESS MY COMBINATION."); + Console.WriteLine(); + } + public static void ShowBoard(IEnumerable history) { Console.WriteLine();