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