- using Blue;
- using System.Collections.Generic;
- public struct GetPointPosSuccessCommand : ICommand
- {
- private List<PointJsonInfo> pointPos;
- public GetPointPosSuccessCommand(List<PointJsonInfo> pointPos)
- {
- this.pointPos = pointPos;
- }
- public void OnExcute()
- {
- this.TriggerEvent<GetPointPosSuccessEvent>(new GetPointPosSuccessEvent() { pointJsonInfos = pointPos });
- }
- }
|