blob: a1196cea75fed31eb38bacce0db7c56846a05e23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package Q8;
public class Point {
private int player;
private int score;
private static final int PLAYER1 = 0;
private static final int PLAYER2 = 1;
private String stroke;
public Point(int player, String stroke, int value) {
this.player = player;
this.stroke = stroke;
}
public int getPlayer() { return 0; }
public int getScore() { return 0; }
public String getStroke() { return ""; }
}
|