/// <summary> Explicit constructor. </summary> public TwoIntsAction(TwoIntsActionGoal ActionGoal, TwoIntsActionResult ActionResult, TwoIntsActionFeedback ActionFeedback) { this.ActionGoal = ActionGoal; this.ActionResult = ActionResult; this.ActionFeedback = ActionFeedback; }
/// <summary> Constructor with buffer. </summary> internal TwoIntsAction(ref Buffer b) { ActionGoal = new TwoIntsActionGoal(ref b); ActionResult = new TwoIntsActionResult(ref b); ActionFeedback = new TwoIntsActionFeedback(ref b); }
/// <summary> Constructor for empty message. </summary> public TwoIntsAction() { ActionGoal = new TwoIntsActionGoal(); ActionResult = new TwoIntsActionResult(); ActionFeedback = new TwoIntsActionFeedback(); }