C2M_TestRobotCaseHandler.cs 347 B

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