Exemplo n.º 1
0
 // Token: 0x06005724 RID: 22308 RVA: 0x001E0550 File Offset: 0x001DE950
 public new static void UpdateAccountInfo(string id, string email, string birthday, string acceptedTOSVersion, Action <APIUser> successCallback = null, Action <string> errorCallback = null)
 {
     APIUser.UpdateAccountInfo(id, email, birthday, acceptedTOSVersion, delegate(APIUser apiUser)
     {
         User.mCurrentNonApiUser = new User();
         User.mCurrentNonApiUser.Init(apiUser);
         User.SetNetworkProperties();
         if (successCallback != null)
         {
             successCallback(apiUser);
         }
     }, errorCallback);
 }