mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-14 19:29:53 +01:00
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
|
|
{
|
|
}
|
|
}
|