Files
tbd-station-14/Content.Server/Sound/Components/EmitSoundOnActivateComponent.cs
2022-02-16 18:23:23 +11:00

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
{
}
}