Plugin.Train.HornBlow C# (CSharp) Метод

HornBlow() приватный Метод

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.
Результат void
		internal void HornBlow(HornTypes type) {
			foreach (Device device in this.Devices) {
				device.HornBlow(type);
			}
		}