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