Files
tbd-station-14/Content.Server/Interaction/Components/EmitSoundOnUseComponent.cs
2021-06-27 21:30:28 +02:00

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";
}
}