Exemplo n.º 1
0
 /// <summary> Explicit constructor. </summary>
 public TwoIntsAction(TwoIntsActionGoal ActionGoal, TwoIntsActionResult ActionResult, TwoIntsActionFeedback ActionFeedback)
 {
     this.ActionGoal     = ActionGoal;
     this.ActionResult   = ActionResult;
     this.ActionFeedback = ActionFeedback;
 }
Exemplo n.º 2
0
 /// <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);
 }
Exemplo n.º 3
0
 /// <summary> Constructor for empty message. </summary>
 public TwoIntsAction()
 {
     ActionGoal     = new TwoIntsActionGoal();
     ActionResult   = new TwoIntsActionResult();
     ActionFeedback = new TwoIntsActionFeedback();
 }