Plugin.Train.SetBrake C# (CSharp) 메소드

SetBrake() 개인적인 메소드

Is called when the driver changes the brake notch.
private SetBrake ( int brakeNotch ) : void
brakeNotch int The new brake notch.
리턴 void
		internal void SetBrake(int brakeNotch) {
			foreach (Device device in this.Devices) {
				device.SetBrake(brakeNotch);
			}
		}