Files
tbd-station-14/Content.Server/Sound/Components/EmitSoundOnLandComponent.cs
2022-02-02 14:35:40 +11:00

13 lines
279 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
{
}
}