internal async Task <LobbyMatchList_t?> RequestLobbyList()
        {
            var returnValue = _RequestLobbyList(Self);

            return(await LobbyMatchList_t.GetResultAsync(returnValue));
        }
Esempio n. 2
0
 private static void LobbyMatchList(LobbyMatchList_t param)
 {
     int num = 0;
     while ((long)num < (long)((ulong)param.m_nLobbiesMatching))
     {
         CoopLobbyManager.GetLobbyInfo(SteamMatchmaking.GetLobbyByIndex(num));
         num++;
     }
 }
Esempio n. 3
0
        internal async Task <LobbyMatchList_t?> RequestLobbyList()
        {
            LobbyMatchList_t?resultAsync = await LobbyMatchList_t.GetResultAsync(this._RequestLobbyList(this.Self));

            return(resultAsync);
        }
 internal async Task <LobbyMatchList_t?> RequestLobbyList()
 {
     return(await LobbyMatchList_t.GetResultAsync(_RequestLobbyList( Self )));
 }
	void OnLobbyMatchList(LobbyMatchList_t pCallback, bool bIOFailure) {
		Debug.Log("[" + LobbyMatchList_t.k_iCallback + " - LobbyMatchList] - " + pCallback.m_nLobbiesMatching);
	}