EmitSoundOnPickupComponent.cs 289 B

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