Ejemplo n.º 1
0
 public void setAction(WaypointTaskTransportAction action)
 {
     this.action = action;
 }
Ejemplo n.º 2
0
 public void addTransportAction(WaypointTaskTransportType type, WaypointTaskTransportAction action, int value)
 {
     transportActions.Add(type, new WaypointTransportAction(type, action, value));
 }
Ejemplo n.º 3
0
 public WaypointTransportAction(WaypointTaskTransportType type, WaypointTaskTransportAction action, int value) : base()
 {
     this.type   = type;
     this.action = action;
     this.value  = value;
 }