blob: 4ed99b934b6aa7ac00f3626a9345d1cc57be11fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
package bjc.utils.dice;
/**
* A die that represents a static number
*
* @author ben
*
*/
public class ScalarDie implements IDiceExpression {
/**
* The represented number
*/
private int num;
/**
* Create a dice with the specified number
*
* @param num
* The number used for the dice
*/
public ScalarDie(int num) {
this.num = num;
}
/*
* (non-Javadoc)
*
* @see bjc.utils.dice.IDiceExpression#roll()
*/
@Override
public int roll() {
return num;
}
/*
* (non-Javadoc)
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
return Integer.toString(num);
}
}
|