summaryrefslogtreecommitdiff
path: root/src/Q4/RandomSumGame.java
blob: 823c32e142256704039e3b062029af6767cb4066 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package Q4;

public class RandomSumGame {
  private boolean start;
  private int d1;
  private int d2;
  private int sum;
  private int valuePoint;
  private String status;

  public void play(int d1, int d2) { }
  public void play() { }
  public void rollDice() {}
}