Plugin.Train.SetReverser C# (CSharp) Method

SetReverser() private method

Is called when the driver changes the reverser.
private SetReverser ( int reverser ) : void
reverser int The new reverser position.
return void
		internal void SetReverser(int reverser) {
			foreach (Device device in this.Devices) {
				device.SetReverser(reverser);
			}
		}