Files
crystall-punk-14/Content.Shared/Sound/Components/EmitSoundOnUIOpenComponent.cs

12 lines
303 B
C#
Raw Normal View History

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