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

13 lines
312 B
C#

using Content.Shared.Sound.Components;
namespace Content.Server.Sound.Components
{
/// <summary>
/// Simple sound emitter that emits sound on AfterActivatableUIOpenEvent
/// </summary>
[RegisterComponent]
public sealed class EmitSoundOnUIOpenComponent : BaseEmitSoundComponent
{
}
}