Files
OldThink/Content.Server/Throwing/EmitSoundOnThrowComponent.cs

13 lines
286 B
C#
Raw Normal View History

using Content.Server.Sound.Components;
2021-06-09 22:19:39 +02:00
namespace Content.Server.Throwing
{
/// <summary>
/// Simple sound emitter that emits sound on ThrowEvent
/// </summary>
[RegisterComponent]
public sealed class EmitSoundOnThrowComponent : BaseEmitSoundComponent
{
}
}