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