Added options UI
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@294 72836036-5685-4462-b002-a69064685172
This commit is contained in:
parent
ffbfc751c9
commit
7f89a1ce10
3 changed files with 89 additions and 12 deletions
|
@ -23,6 +23,7 @@ public class MockSettingsPanel implements ISettingsPanel {
|
|||
public boolean addPlayerButtonEnabled = true;
|
||||
public boolean removePlayerButtonsEnabled = false;
|
||||
public GameSettings gameSettings = new GameSettings();
|
||||
public int initialMeldThreshold;
|
||||
|
||||
@Override
|
||||
public IEvent getAddPlayerEvent() {
|
||||
|
@ -84,4 +85,9 @@ public class MockSettingsPanel implements ISettingsPanel {
|
|||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setInitialMeldThreshold(int value) {
|
||||
initialMeldThreshold = value;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Reference in a new issue