16 lines
398 B
C#
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";
|
|
}
|
|
}
|