AmbientOnPoweredComponent.cs 301 B

123456789101112
  1. using Content.Shared.Audio;
  2. namespace Content.Server.Audio
  3. {
  4. /// <summary>
  5. /// Toggles <see cref="AmbientSoundComponent"/> on when powered and off when not powered.
  6. /// </summary>
  7. [RegisterComponent]
  8. public sealed partial class AmbientOnPoweredComponent : Component
  9. {
  10. }
  11. }