Files
tbd-station-14/Content.Shared/Sound/Components/EmitSoundOnLandComponent.cs
2023-01-05 05:56:35 +11:00

13 lines
305 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.Sound.Components
{
/// <summary>
/// Simple sound emitter that emits sound on LandEvent
/// </summary>
[RegisterComponent, NetworkedComponent]
public sealed class EmitSoundOnLandComponent : BaseEmitSoundComponent
{
}
}