Exemplo n.º 1
0
 // Token: 0x06005723 RID: 22307 RVA: 0x001E0504 File Offset: 0x001DE904
 public new static void Register(string username, string email, string password, string birthday, Action <APIUser> successCallback = null, Action <string> errorCallback = null)
 {
     APIUser.Register(username, email, password, birthday, delegate(APIUser apiUser)
     {
         ApiCredentials.SetUser(username, password);
         User.SetNetworkProperties();
         if (successCallback != null)
         {
             successCallback(apiUser);
         }
     }, errorCallback);
 }