ui info hosst player and npc done

This commit is contained in:
NguyenVanDat
2025-10-28 17:22:03 +07:00
parent 46eb3afe2b
commit 0d358f867d
24 changed files with 3059 additions and 677 deletions
@@ -29,6 +29,19 @@ namespace BrewMonster.Network
private string _username = "";
private string _password = "";
#if UNITY_EDITOR
public bool isDebg;
private bool lastDebug;
public void OnValidate()
{
if (isDebg != lastDebug)
{
_gameSession.IsDebug = isDebg;
lastDebug = isDebg;
}
}
#endif
protected override void Awake()
{
Encoding.RegisterProvider(CodePagesEncodingProvider.Instance);