Move all network code into Unity Project

This commit is contained in:
Le Duc Anh
2025-10-09 08:52:31 +07:00
parent bb91365639
commit fde06bbfaf
559 changed files with 20164 additions and 297 deletions
+2 -14
View File
@@ -37,23 +37,11 @@ public class CanvasController : MonoBehaviour
private void OnClickSelectChacter(RoleInfo roleInfo)
{
TestClientProgram.HandleSelectRole(roleInfo, (result) =>
{
context.Post(_ =>
{
bgr.gameObject.SetActive(false);
screenLogin.gameObject.SetActive(false);
screenCharacter.gameObject.SetActive(false);
//gameController.InitCharacter(result);
}, null);
});
}
private void OnDestroy()
{
TestClientProgram.HandleLogOut((result) =>
{
Debug.LogError(result);
});
}
}