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

SetPower() 개인적인 메소드

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