13 lines
312 B
C#
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
|
|
{
|
|
}
|
|
}
|