Files
tbd-station-14/Content.Server/Sound/Components/EmitSoundOnTriggerComponent.cs
2023-01-05 05:56:35 +11:00

14 lines
362 B
C#

using Content.Server.Explosion.EntitySystems;
using Content.Shared.Sound.Components;
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
{
}
}