Added missing start of turn output

This commit is contained in:
Peter
2021-07-11 09:27:45 -04:00
parent e95990b7a3
commit 016d658625
2 changed files with 11 additions and 9 deletions

View File

@@ -22,6 +22,8 @@ namespace Game
for (var round = 1; round <= rounds; ++round)
{
View.ShowStartOfRound(round);
if (!HumanTakesTurn())
return;

View File

@@ -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<TurnResult> history)
{
Console.WriteLine();