public ExpectedDepartureStartstation(Tram tram, Endstation station, Platform platform, int timeTableTime) { this.tram = tram; this.station = station; this.platform = platform; this.timeTableTime = timeTableTime; }
public ArrivalEndstation(Tram tram, Endstation station, Platform platform, bool fromDepot = false) { this.tram = tram; this.station = station; this.platform = platform; this.fromDepot = fromDepot; }
internal int turnAroundTimeFor(Endstation station) { if (ucDualDriverSwitch && station.name == endStation) { return(turnAroundTimeDualDriver); } return(turnAroundTime); }
public ExpectedArrivalEndstation(Tram tram, Endstation station) { this.tram = tram; this.station = station; }
public ClearSwitchLane(Endstation station, SwitchLane lane) { this.station = station; this.lane = lane; }
public DepartureStartstation(Tram tram, Endstation station, Platform platform) { this.tram = tram; this.station = station; this.platform = platform; }