Files
tbd-station-14/Content.Server/Throwing/EmitSoundOnThrowComponent.cs
2022-05-13 17:59:03 +10:00

13 lines
286 B
C#

using Content.Server.Sound.Components;
namespace Content.Server.Throwing
{
/// <summary>
/// Simple sound emitter that emits sound on ThrowEvent
/// </summary>
[RegisterComponent]
public sealed class EmitSoundOnThrowComponent : BaseEmitSoundComponent
{
}
}