Files
tbd-station-14/Content.Server/Sound/Components/EmitSoundOnTriggerComponent.cs
2022-03-25 15:17:29 +11:00

13 lines
323 B
C#

using Content.Server.Explosion.EntitySystems;
namespace Content.Server.Sound.Components
{
/// <summary>
/// Whenever a <see cref="TriggerEvent"/> is run play a sound in PVS range.
/// </summary>
[RegisterComponent]
public sealed class EmitSoundOnTriggerComponent : BaseEmitSoundComponent
{
}
}