using System; using System.Threading.Tasks; using ETModel; namespace ETHotfix { [ActorMessageHandler(AppType.Map)] public class C2M_TestActorRequestHandler : AMActorLocationRpcHandler { protected override async Task Run(Unit unit, C2M_TestActorRequest message, Action reply) { reply(new M2C_TestActorResponse(){Info = "actor rpc response"}); await Task.CompletedTask; } } }