ObjectRemoveRequestHandler.cs 464 B

123456789101112131415
  1. using System;
  2. namespace ET.Server
  3. {
  4. [ActorMessageHandler(SceneType.Location)]
  5. public class ObjectRemoveRequestHandler: AMActorRpcHandler<Scene, ObjectRemoveRequest, ObjectRemoveResponse>
  6. {
  7. protected override async ETTask Run(Scene scene, ObjectRemoveRequest request, ObjectRemoveResponse response, Action reply)
  8. {
  9. await scene.GetComponent<LocationComponent>().Remove(request.Key);
  10. reply();
  11. }
  12. }
  13. }