Example #1
0
 /// <summary>
 /// Joins the selected session if there is a selected session.
 /// </summary>
 public void JoinSelectedSession()
 {
     if (SelectedSession != null && networkDiscovery.running)
     {
         networkDiscovery.JoinSession(SelectedSession);
     }
 }