示例#1
0
 private void VerificationPanelOnClick(string code)
 {
     PhoneManager.Instance.VerifyCode(code, (error, text) =>
     {
         if (error)
         {
             _errorPanel.gameObject.SetActive(true);
             _errorPanel.Initialize(text);
         }
         else
         {
             GoToScreen(2);
         }
     });
 }