13 lines
293 B
C#
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
|
|
{
|
|
}
|
|
}
|