diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2011-06-11 03:15:12 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2011-06-11 03:15:12 +0200 |
commit | dbd57d42188aa8499211f9a0461fd3511c80f578 (patch) | |
tree | d4945475a9990463379b2d70aa83c6269202cc04 /src/jrummikub/view | |
parent | 630cdea1d9383aee75a984867682459d06c7c61a (diff) | |
download | JRummikub-dbd57d42188aa8499211f9a0461fd3511c80f578.tar JRummikub-dbd57d42188aa8499211f9a0461fd3511c80f578.zip |
Add NetworkSettingsControl
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@409 72836036-5685-4462-b002-a69064685172
Diffstat (limited to 'src/jrummikub/view')
-rw-r--r-- | src/jrummikub/view/IGameListPanel.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/jrummikub/view/IGameListPanel.java b/src/jrummikub/view/IGameListPanel.java index da41839..018d931 100644 --- a/src/jrummikub/view/IGameListPanel.java +++ b/src/jrummikub/view/IGameListPanel.java @@ -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; |