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
|
@ -82,4 +82,8 @@ public class MockHand implements IHand {
|
|||
// TODO Auto-generated method stub
|
||||
return 0;
|
||||
}
|
||||
|
||||
public boolean isInitialMeldPossible() {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -5,7 +5,7 @@ package jrummikub.model;
|
|||
*/
|
||||
public class MockPlayer implements IPlayer {
|
||||
/** */
|
||||
public Hand hand;
|
||||
public IHand hand;
|
||||
/** */
|
||||
public PlayerSettings playerSettings;
|
||||
/** */
|
||||
|
|
Reference in a new issue