예제 #1
0
 /// <summary>
 /// Calls the method GetUsersInLobby from the user controller
 /// </summary>
 /// <param name="id">the id of the joined lobby</param>
 /// <returns>returns the method with a list of users from the specified id
 /// from user controller</returns>
 public List <User> GetUsersInLobby(int id)
 {
     return(userCtrl.GetUsersInLobby(id));
 }