1
0

EmitSoundOnThrowComponent.cs 285 B

1234567891011
  1. using Robust.Shared.GameStates;
  2. namespace Content.Shared.Sound.Components;
  3. /// <summary>
  4. /// Simple sound emitter that emits sound on ThrowEvent
  5. /// </summary>
  6. [RegisterComponent, NetworkedComponent]
  7. public sealed partial class EmitSoundOnThrowComponent : BaseEmitSoundComponent
  8. {
  9. }