using System; namespace ET { [ActorMessageHandler] public class C2M_GetBagHandler : AMActorLocationRpcHandler { protected override async ETTask Run(Unit unit, C2M_GetBag request, M2C_GetBag response, Action reply) { BagHelper.GetBagInfo(unit, response.BagMapList); reply(); await ETTask.CompletedTask; } } }