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