示例#1
0
文件: Dice.cs 项目: JMOatey/IT-4400
 public void Roll()
 {
     Value  = DiceRoll.Next(1, MaxDiceRange);
     IsUsed = false;
 }