public static void EndTurn() { int turnScore = CalculateTurnScore(CurrentPlayer); Console.WriteLine($"{CurrentPlayer} has scored {turnScore} this turn."); CurrentPlayer.AddScore(turnScore); CurrentPlayer.RefillHand(); NextPlayer(); }