using Robust.Shared.GameObjects;
namespace Content.Server.Sound.Components
{
///
/// Simple sound emitter that emits sound on LandEvent
///
[RegisterComponent]
public class EmitSoundOnLandComponent : BaseEmitSoundComponent
{
///
public override string Name => "EmitSoundOnLand";
}
}