using System; namespace ET.Server { [ActorMessageLocationHandler(SceneType.Map)] public class C2M_TestRobotCaseHandler : ActorMessageLocationHandler { protected override async ETTask Run(Unit unit, C2M_TestRobotCase request, M2C_TestRobotCase response) { response.N = request.N; await ETTask.CompletedTask; } } }