Fixed MockSettingsPanel

git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@525 72836036-5685-4462-b002-a69064685172
This commit is contained in:
Jannis Harder 2011-06-21 01:47:56 +02:00
parent 72912be600
commit 5656d8bb82

View file

@ -65,6 +65,8 @@ public class MockSettingsPanel implements ISettingsPanel {
/** */
public MockEvent1<Set<StoneColor>> changeStoneColorsEvent = new MockEvent1<Set<StoneColor>>();
/** */
public MockEvent1<Boolean> changeSeeHandSizeEvent;
/** */
public int initialMeldThreshold;
/** */
public int jokerNumber;
@ -227,4 +229,9 @@ public class MockSettingsPanel implements ISettingsPanel {
// TODO Auto-generated method stub
}
@Override
public IEvent1<Boolean> getChangeSeeHandSizeEvent() {
return changeSeeHandSizeEvent;
}
}