// <summary>Called when the join lobby button is pressed to jon the currently selected lobby</summary> public void JoinSelectedLobby() { ListItem lobbyItem = lobbyListItems.CurrentSelected; if (lobbyItem != null) { NetworkingService.JoinLobby(lobbyItem.TxtName.text); } }