private void OnGlobalStatsReceived(GlobalStatsReceived_t pCallback, bool bIOFailure) {
		Debug.Log("[" + GlobalStatsReceived_t.k_iCallback + " - GlobalStatsReceived] - " + pCallback.m_nGameID + " -- " + pCallback.m_eResult);
	}
Example #2
0
        internal async Task <GlobalStatsReceived_t?> RequestGlobalStats(int nHistoryDays)
        {
            GlobalStatsReceived_t?resultAsync = await GlobalStatsReceived_t.GetResultAsync(this._RequestGlobalStats(this.Self, nHistoryDays));

            return(resultAsync);
        }
 internal async Task <GlobalStatsReceived_t?> RequestGlobalStats(int nHistoryDays)
 {
     return(await GlobalStatsReceived_t.GetResultAsync(_RequestGlobalStats( Self, nHistoryDays )));
 }
Example #4
0
        internal async Task <GlobalStatsReceived_t?> RequestGlobalStats(int nHistoryDays)
        {
            var returnValue = _RequestGlobalStats(Self, nHistoryDays);

            return(await GlobalStatsReceived_t.GetResultAsync(returnValue));
        }