Exemplo n.º 1
0
 public void Send_Account_Login(string ID, string PW)
 {
     //로그인 계정정보 보내기 Login 토큰
     Socket_Client.Send_Receive_ToServer("Login;" + ID + ";" + PW + ";");
 }
Exemplo n.º 2
0
 public void Send_Update_UserData(string data_stream)
 {
     //아이디와 함께 변경할 캐릭터 정보 보내기 Data 토큰
     Socket_Client.Send_Receive_ToServer("Data;" +
                                         Singletone_PlayerManager.singletone_Player.PlayerInformaion.GetDataOne(UI_Player_Information.ID) + ";" + data_stream + ";");
 }
Exemplo n.º 3
0
 //서버로 보내는 부분
 public void Send_Account_Create_New(string ID, string PW)
 {
     //새로만드는 계정정보 보내기 NewAccount 토큰
     Socket_Client.Send_Receive_ToServer("NewAccount;" + ID + ";" + PW + ";");
 }