Test if initial melds are possible
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@265 72836036-5685-4462-b002-a69064685172
This commit is contained in:
parent
4a98975b0d
commit
d5a8b2204c
5 changed files with 131 additions and 6 deletions
|
@ -74,4 +74,10 @@ public class Hand extends StoneTray<Stone> implements IHand {
|
|||
|
||||
return points;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isInitialMeldPossible() {
|
||||
// TODO Auto-generated method stub
|
||||
throw new Error("not implemented");
|
||||
}
|
||||
}
|
||||
|
|
|
@ -27,4 +27,6 @@ public interface IHand extends IStoneTray<Stone> {
|
|||
* @return points
|
||||
*/
|
||||
int getStonePoints();
|
||||
|
||||
public abstract boolean isInitialMeldPossible();
|
||||
}
|
||||
|
|
Reference in a new issue