Beispiel #1
0
        public void ScoreRound(string guess)
        {
            var imposter = CurrentRound.Participants.First(p => p.IsImposter);

            CurrentRound.ImpostersGuess = guess;

            CurrentRound            = Scorer.AddScoresToRound(CurrentRound);
            CurrentRound.IsComplete = true;

            PreviousRounds.Add(CurrentRound);
            PreviousRound = CurrentRound;

            CurrentRound = null;
        }