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

16 lines
398 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
{
/// <inheritdoc />
public override string Name => "EmitSoundOnThrow";
}
}