Files
tbd-station-14/Content.Server/Throwing/EmitSoundOnThrowComponent.cs
2022-02-16 18:23:23 +11:00

14 lines
319 B
C#

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