Add NetworkSettingsControl

git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@409 72836036-5685-4462-b002-a69064685172
This commit is contained in:
Matthias Schiffer 2011-06-11 03:15:12 +02:00
parent 630cdea1d9
commit dbd57d4218
4 changed files with 58 additions and 8 deletions

View file

@ -12,6 +12,10 @@ public interface IGameListPanel {
private int currentPlayerCount = 0;
private int maxPlayerCount = 0;
public GameData(UUID gameID) {
this.gameID = gameID;
}
public GameData(UUID gameID, String host) {
this.gameID = gameID;
this.host = host;