14 lines
319 B
C#
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
|
|
{
|
|
}
|
|
}
|