示例#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);
 }