15 lines
378 B
C#
15 lines
378 B
C#
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Server.Sound.Components
|
|
{
|
|
/// <summary>
|
|
/// Simple sound emitter that emits sound on ActivateInWorld
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public class EmitSoundOnActivateComponent : BaseEmitSoundComponent
|
|
{
|
|
/// <inheritdoc />
|
|
public override string Name => "EmitSoundOnActivate";
|
|
}
|
|
}
|