예제 #1
0
 public void UseCombination(Scoreboard sb, Combination c, IDices dices)
 {
     sb.SetCombinationForPlayer(_player, c, dices);
     TurnEnded?.Invoke(this, EventArgs.Empty);
 }
예제 #2
0
파일: Game.cs 프로젝트: bobcorn/yahtzee
 public void UseCombination(Combination c)
 {
     CurrentPlayerTurn.UseCombination(_scoreboard, c, _dices);
 }