Esempio n. 1
0
 /// <summary> Explicit constructor. </summary>
 public MoveGroupAction(MoveGroupActionGoal ActionGoal, MoveGroupActionResult ActionResult, MoveGroupActionFeedback ActionFeedback)
 {
     this.ActionGoal     = ActionGoal;
     this.ActionResult   = ActionResult;
     this.ActionFeedback = ActionFeedback;
 }
Esempio n. 2
0
 /// <summary> Constructor with buffer. </summary>
 internal MoveGroupAction(ref Buffer b)
 {
     ActionGoal     = new MoveGroupActionGoal(ref b);
     ActionResult   = new MoveGroupActionResult(ref b);
     ActionFeedback = new MoveGroupActionFeedback(ref b);
 }
Esempio n. 3
0
 /// <summary> Constructor for empty message. </summary>
 public MoveGroupAction()
 {
     ActionGoal     = new MoveGroupActionGoal();
     ActionResult   = new MoveGroupActionResult();
     ActionFeedback = new MoveGroupActionFeedback();
 }