1
0

EmitSoundOnLandComponent.cs 283 B

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