14 lines
330 B
C#
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
|
|
{
|
|
}
|
|
}
|