Exemple #1
0
 public bool CanBank(int playerScore)
 {
     if (firstThrow || dieSelector.NumberOfSelected(thrownDice) == thrownDice.Count || failedThrow)
     {
         return(false);
     }
     if (dieSelector.AllSelected(thrownDice))
     {
         return(scoreController.CanBank(playerScore));
     }
     return(false);
 }