C2M_TestRobotCaseHandler.cs 366 B

1234567891011121314
  1. using System;
  2. namespace ET.Server
  3. {
  4. [ActorMessageHandler(SceneType.Map)]
  5. public class C2M_TestRobotCaseHandler : AMActorLocationRpcHandler<Unit, C2M_TestRobotCase, M2C_TestRobotCase>
  6. {
  7. protected override async ETTask Run(Unit unit, C2M_TestRobotCase request, M2C_TestRobotCase response)
  8. {
  9. response.N = request.N;
  10. await ETTask.CompletedTask;
  11. }
  12. }
  13. }