using Content.Server.Sound.Components;
using Robust.Shared.GameObjects;
namespace Content.Server.Interaction.Components
{
///
/// Simple sound emitter that emits sound on UseInHand
///
[RegisterComponent]
public class EmitSoundOnUseComponent : BaseEmitSoundComponent
{
///
public override string Name => "EmitSoundOnUse";
}
}