Files
crystall-punk-14/Content.Server/Sound/Components/EmitSoundOnTriggerComponent.cs

14 lines
370 B
C#
Raw Permalink 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 partial class EmitSoundOnTriggerComponent : BaseEmitSoundComponent
{
}
}