예제 #1
0
 //Request all active games for this user from DB, wait n seconds, then call display
 public void RequetActivGames()
 {
     Destroy_Entries();
     this.games = gamesScript.GetGamesList();
     foreach (Games child in this.games)
     {
         Debug.Log(child.SessionName + ": " + child.Status + ": " + child.HostName);
     }
     StartCoroutine(WaitBeforeDisplay(1));
 }