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);
			}
		}