Files
tbd-station-14/Content.Server/Sound/Components/EmitSoundOnPickupComponent.cs

11 lines
258 B
C#

namespace Content.Server.Sound.Components
{
/// <summary>
/// Simple sound emitter that emits sound on entity pickup
/// </summary>
[RegisterComponent]
public sealed class EmitSoundOnPickupComponent : BaseEmitSoundComponent
{
}
}