Example #1
0
 public void PlatformProfileUpdated(PlatformConnectType connectType, IUserProfile profile)
 {
     if (this.OnPlatformProfileUpdated != null)
     {
         this.OnPlatformProfileUpdated(connectType, profile);
     }
 }
Example #2
0
 public void PlatformConnectStateChanged(PlatformConnectType connectType)
 {
     if (this.OnPlatformConnectStateChanged != null)
     {
         this.OnPlatformConnectStateChanged(connectType);
     }
 }
Example #3
0
 public void PlatformFriendsUpdated(PlatformConnectType connectType)
 {
     if (this.OnPlatformFriendsUpdated != null)
     {
         this.OnPlatformFriendsUpdated(connectType);
     }
 }
 private void OnFriendsUpdated(PlatformConnectType connectType)
 {
     if (connectType == PlatformConnectType.Facebook)
     {
         Service.Binder.TaskManager.StartTask(this.UpdateFacebookLeaderboard(), null);
     }
 }
Example #5
0
 private void onPlatformConnectStateChanged(PlatformConnectType _connectType)
 {
     base.refresh();
 }