Files
tbd-station-14/Content.Server/Audio/AmbientOnPoweredComponent.cs
2022-05-13 17:59:03 +10:00

13 lines
293 B
C#

using Content.Shared.Audio;
namespace Content.Server.Audio
{
/// <summary>
/// Toggles <see cref="AmbientSoundComponent"/> on when powered and off when not powered.
/// </summary>
[RegisterComponent]
public sealed class AmbientOnPoweredComponent : Component
{
}
}