Files
tbd-station-14/Content.Server/Throwing/EmitSoundOnThrowComponent.cs
2022-02-02 14:35:40 +11:00

14 lines
312 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 class EmitSoundOnThrowComponent : BaseEmitSoundComponent
{
}
}