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