GetPointPosSuccessCommand.cs 424 B

123456789101112131415
  1. using Blue;
  2. using System.Collections.Generic;
  3. public struct GetPointPosSuccessCommand : ICommand
  4. {
  5. private List<PointJsonInfo> pointPos;
  6. public GetPointPosSuccessCommand(List<PointJsonInfo> pointPos)
  7. {
  8. this.pointPos = pointPos;
  9. }
  10. public void OnExcute()
  11. {
  12. this.TriggerEvent<GetPointPosSuccessEvent>(new GetPointPosSuccessEvent() { pointJsonInfos = pointPos });
  13. }
  14. }