10 lines
282 B
C#
10 lines
282 B
C#
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Sound.Components;
|
|
|
|
/// <summary>
|
|
/// Simple sound emitter that emits sound on ThrowEvent
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed partial class EmitSoundOnThrowComponent : BaseEmitSoundComponent;
|