Merge remote-tracking branch 'origin/master'

This commit is contained in:
Seraina 2022-04-08 12:46:18 +02:00
commit f729a62289

View File

@ -1,5 +1,8 @@
package ch.unibas.dmi.dbis.cs108.sebaschi;
import ch.unibas.dmi.dbis.cs108.multiplayer.server.ClientHandler;
import java.util.List;
/**
* This class is just everyone on the server, which games are open to join, who is in session. I.E.
* the context of the game just after joining the server, before starting a game and entering into a
@ -7,4 +10,7 @@ package ch.unibas.dmi.dbis.cs108.sebaschi;
*/
public class ServerLobby {
List<Lobby> openLobbies;
List<ClientHandler> allClients;
}