コード例 #1
0
ファイル: Dice.cs プロジェクト: JMOatey/IT-4400
 public void Roll()
 {
     Value  = DiceRoll.Next(1, MaxDiceRange);
     IsUsed = false;
 }