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:
Jannis Harder 2011-05-24 01:51:58 +02:00
parent 4a98975b0d
commit d5a8b2204c
5 changed files with 131 additions and 6 deletions

View file

@ -82,4 +82,8 @@ public class MockHand implements IHand {
// TODO Auto-generated method stub
return 0;
}
public boolean isInitialMeldPossible() {
return false;
}
}

View file

@ -5,7 +5,7 @@ package jrummikub.model;
*/
public class MockPlayer implements IPlayer {
/** */
public Hand hand;
public IHand hand;
/** */
public PlayerSettings playerSettings;
/** */