16 lines
365 B
C#
16 lines
365 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";
|
|
}
|
|
}
|