Unity Game Session MVP

This commit is contained in:
Le Duc Anh
2025-09-08 16:28:54 +07:00
parent b75c818a1b
commit e3e435d12e
31 changed files with 2776 additions and 5 deletions
@@ -1,17 +1,25 @@
using CSNetwork;
using BrewMonster;
using CSNetwork;
namespace PerfectWorld.Scripts.Managers
{
namespace BrewMonster.Managers
{
public class EC_ManPlayer : IMsgHandler
public class EC_ManPlayer : IMsgHandler, IAutoInitialize
{
public void Initialize()
{
EC_ManMessage.RegisterHandler(this); // add to the message handler list
}
public int HandlerId => MANAGER_INDEX.MAN_PLAYER;
public bool ProcessMessage(ECMSG Msg)
{
return true;
}
}
}
}