using System; using ETModel; namespace ETHotfix { [ActorMessageHandler(AppType.Map)] public class C2M_TestRequestHandler : AMActorLocationRpcHandler { protected override async ETTask Run(Unit unit, C2M_TestRequest message, Action reply) { await ETTask.CompletedTask; reply(new M2C_TestResponse() {Response = "response actor rpc"}); } } }