Plugin.Train.SetBrake C# (CSharp) Method

SetBrake() private method

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