1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
package bjc.utils.dice; /** * An expression for something that can be rolled like a polyhedral die * * @author ben * */ public interface IDiceExpression { /** * Roll the dice once * @return The result of rowing the dice */ public int roll(); }