A get/set pair was missing.
This commit is contained in:
parent
ee3dfb7cea
commit
da8ad7259a
@ -82,10 +82,18 @@ public class Player {
|
|||||||
this.tile = tile;
|
this.tile = tile;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** Get lastMove */
|
||||||
int[] getLastMove () { return lastMove; }
|
int[] getLastMove () { return lastMove; }
|
||||||
|
/** Set lastMove */
|
||||||
void setLastMove (int[] lastMove) {
|
void setLastMove (int[] lastMove) {
|
||||||
this.lastMove = lastMove;
|
this.lastMove = lastMove;
|
||||||
}
|
}
|
||||||
|
/** Get dryMove */
|
||||||
|
int[] getDryMove () { return dryMove; }
|
||||||
|
/** Set dryMove */
|
||||||
|
void setDryMove (int[] dryMove) {
|
||||||
|
this.dryMove = dryMove;
|
||||||
|
}
|
||||||
/** @} */
|
/** @} */
|
||||||
|
|
||||||
/** @name Exposed API members */
|
/** @name Exposed API members */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user