Files
tbd-station-14/Content.Server/Throwing/EmitSoundOnThrowComponent.cs
2021-06-27 21:30:28 +02:00

17 lines
399 B
C#

using Content.Server.Sound;
using Robust.Shared.GameObjects;
namespace Content.Server.Throwing
{
/// <summary>
/// Simple sound emitter that emits sound on ThrowEvent
/// </summary>
[RegisterComponent]
public class EmitSoundOnThrowComponent : BaseEmitSoundComponent
{
/// <inheritdoc />
///
public override string Name => "EmitSoundOnThrow";
}
}