Files
OldThink/Content.Server/Sound/Components/EmitSoundOnTriggerComponent.cs

14 lines
362 B
C#
Raw Normal View History

using Content.Server.Explosion.EntitySystems;
2023-01-04 12:56:35 -06:00
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
{
}
}