Beispiel #1
0
 public void RemovePath(VehiclePath path) => VehiclePaths.RemovePath(path);
Beispiel #2
0
 public VehicleLane(VehiclePath parent)
 {
     Parent = parent;
 }
Beispiel #3
0
 public UnidirectionalLane(VehiclePath parent, LaneDir direction) : base(parent)
 {
     Direction = direction;
 }
Beispiel #4
0
 public BidirectionalLane(VehiclePath parent) : base(parent)
 {
 }