/// <summary> Explicit constructor. </summary> public MoveGroupSequenceAction(MoveGroupSequenceActionGoal ActionGoal, MoveGroupSequenceActionResult ActionResult, MoveGroupSequenceActionFeedback ActionFeedback) { this.ActionGoal = ActionGoal; this.ActionResult = ActionResult; this.ActionFeedback = ActionFeedback; }
/// <summary> Constructor with buffer. </summary> internal MoveGroupSequenceAction(ref Buffer b) { ActionGoal = new MoveGroupSequenceActionGoal(ref b); ActionResult = new MoveGroupSequenceActionResult(ref b); ActionFeedback = new MoveGroupSequenceActionFeedback(ref b); }
/// <summary> Constructor for empty message. </summary> public MoveGroupSequenceAction() { ActionGoal = new MoveGroupSequenceActionGoal(); ActionResult = new MoveGroupSequenceActionResult(); ActionFeedback = new MoveGroupSequenceActionFeedback(); }