Plugin.Train.SetPower C# (CSharp) Method

SetPower() private method

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