Plugin.Train.HornBlow C# (CSharp) Method

HornBlow() private method

Is called when a horn is played or when the music horn is stopped.
private HornBlow ( HornTypes type ) : void
type HornTypes The type of horn.
return void
		internal void HornBlow(HornTypes type) {
			foreach (Device device in this.Devices) {
				device.HornBlow(type);
			}
		}