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