Files
tbd-station-14/Content.Server/Sound/Components/EmitSoundOnLandComponent.cs
2021-06-27 21:55:18 +02:00

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";
}
}