Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b583d63095 | ||
|
|
da8ad7259a | ||
|
|
ee3dfb7cea |
@@ -1,6 +1,5 @@
|
||||
*bin/*
|
||||
*doc/*
|
||||
*report/*
|
||||
*deliverable/*
|
||||
*.project
|
||||
*.classpath
|
||||
|
||||
Binary file not shown.
Binary file not shown.
|
After Width: | Height: | Size: 96 KiB |
@@ -82,10 +82,18 @@ public class Player {
|
||||
this.tile = tile;
|
||||
}
|
||||
|
||||
/** Get lastMove */
|
||||
int[] getLastMove () { return lastMove; }
|
||||
/** Set lastMove */
|
||||
void setLastMove (int[] lastMove) {
|
||||
this.lastMove = lastMove;
|
||||
}
|
||||
/** Get dryMove */
|
||||
int[] getDryMove () { return dryMove; }
|
||||
/** Set dryMove */
|
||||
void setDryMove (int[] dryMove) {
|
||||
this.dryMove = dryMove;
|
||||
}
|
||||
/** @} */
|
||||
|
||||
/** @name Exposed API members */
|
||||
|
||||
Reference in New Issue
Block a user