2021-07-25 13:37:01 +02:00
|
|
|
using Content.Server.Sound.Components;
|
2019-06-03 23:16:47 +05:00
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
namespace Content.Server.Interaction.Components
|
2019-06-03 23:16:47 +05:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
2021-06-19 11:35:56 +02:00
|
|
|
/// Simple sound emitter that emits sound on UseInHand
|
2019-06-03 23:16:47 +05:00
|
|
|
/// </summary>
|
2019-07-31 15:02:36 +02:00
|
|
|
[RegisterComponent]
|
2022-02-16 00:23:23 -07:00
|
|
|
public sealed class EmitSoundOnUseComponent : BaseEmitSoundComponent
|
2019-06-03 23:16:47 +05:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|