public LobbyCoordinator(ILobby deafultLobby, LobbyCoordinatorCommandProcessor lobbyCoordinatorCommandProcessor) { _lobbyCoordinatorCommandProcessor = lobbyCoordinatorCommandProcessor; deafultLobby.StartLobby(); _deafultLobbyId = deafultLobby.GetLobbyId(); _lobbies = new List <ILobby> { deafultLobby }; }
private string FormatLobbyInfo(ILobby lobby) { return($"Lobby Type: {lobby.GetLobbyType()} | Lobby Id: {lobby.GetLobbyId()}"); }