Exemplo n.º 1
0
 public void PROC_REG_USER(byte[] m_RecvBuf)
 {
     if (BitConverter.ToInt32(m_RecvBuf, 0) == 8)
     {
         SucFail.text = "가입 실패";
         SucFail.gameObject.SetActive(true);
         _username.text = null;
         _password.text = null;
         mainCtrl.RestartSocket();
     }
     else
     {
         mainCtrl.LoginToLobby();
     }
 }