示例#1
0
 public Attempt(Dice die, Bonus bon)
 {
     this.dice  = die;
     this.bonus = bon;
 }
示例#2
0
 public Attempt()
 {
     //defualt will create a 1d20 with +1 bonus
     dice  = new Dice();
     bonus = new Bonus();
 }