コード例 #1
0
 public void UseScore(ScoreSlot slot, DiceSet set)
 {
     ScoreCard.UseScore(slot, set);
     Reset();
 }
コード例 #2
0
 public bool CanThrow()
 {
     return(!ScoreCard.IsFullCard() && Throws < 3);
 }
コード例 #3
0
 public bool CanScore()
 {
     return(!ScoreCard.IsFullCard() && Throws > 0);
 }
コード例 #4
0
 public PlayerState(DiceSet set, ScoreCard scoreCard)
 {
     this.DiceSet   = set;
     this.ScoreCard = scoreCard;
 }