17 lines
408 B
C#
17 lines
408 B
C#
using Content.Server.Sound;
|
|
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Server.Interaction.Components
|
|
{
|
|
/// <summary>
|
|
/// Simple sound emitter that emits sound on UseInHand
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public class EmitSoundOnUseComponent : BaseEmitSoundComponent
|
|
{
|
|
/// <inheritdoc />
|
|
///
|
|
public override string Name => "EmitSoundOnUse";
|
|
}
|
|
}
|