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

16 lines
407 B
C#

using Content.Server.Sound.Components;
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";
}
}