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