Files
tbd-station-14/Content.Server/Interaction/Components/EmitSoundOnUseComponent.cs
2022-02-16 18:23:23 +11:00

14 lines
330 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 sealed class EmitSoundOnUseComponent : BaseEmitSoundComponent
{
}
}