Delta-v/Content.Server/Sound/Components/EmitSoundOnActivateComponen...

13 lines
296 B
C#

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