Delta-v/Content.Shared/Sound/Components/EmitSoundOnDropComponent.cs

13 lines
307 B
C#

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