-
Notifications
You must be signed in to change notification settings - Fork 1
/
Move.java
68 lines (58 loc) · 890 Bytes
/
Move.java
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/* A class describing a move in the board
* Every produced child corresponds to a move
* and we need to keep the moves as well as the states.
*/
public class Move
{
private int x;
private int y;
private int value;
public Move()
{
x = -1;
y = -1;
value = 0;
}
public Move(int x, int y)
{
this.x = x;
this.y = y;
this.value = -1;
}
public Move(int value)
{
this.x = -1;
this.y = -1;
this.value = value;
}
public Move(int x, int y, int value)
{
this.x = x;
this.y = y;
this.value = value;
}
public int getX()
{
return x;
}
public int getY()
{
return y;
}
public int getValue()
{
return value;
}
public void setX(int x)
{
this.x = x;
}
public void setY(int y)
{
this.y = y;
}
public void setValue(int value)
{
this.value = value;
}
}