3 Commits
4 changed files with 8 additions and 1 deletions
-1
View File
@@ -1,6 +1,5 @@
*bin/* *bin/*
*doc/* *doc/*
*report/*
*deliverable/* *deliverable/*
*.project *.project
*.classpath *.classpath
BIN
View File
Binary file not shown.
Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

@@ -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 */