Пример #1
0
 private void getGlobalUserInfo(List <string> userIdList)
 {
     if (userIdList == null || userIdList.Count == 0)
     {
         mLoading.gameObject.SetActive(false);
         return;
     }
     MHttpManagerFactory.getSteamManagerPowered().getSteamUserInfo(userIdList, new SteamUserInfoCallBack(this));
 }
Пример #2
0
 private void updateLeaderBoard(ulong leaderboardId, int score)
 {
     MHttpManagerFactory.getSteamManagerPartner().updateLeaderboardData(leaderboardId, score, new UpdateLeaderBoardCallBack(this));
 }