Files
OldThink/Content.Shared/_White/Lighting/PointLight/Airlock/PointLightAirlockComponent.cs
ThereDrD0 e9232e638c Another fixes and features (#392)
* fix: doorlights supports emagging now + fix emergency light

* add todo to PointLightAirlockSystem.cs

* tweak: reduce captain armor size

* fix: fix wt550 magazine stored rotation

* add: new lobby songs

* fix: fix lobby music rotation
2024-06-29 09:49:43 +03:00

29 lines
649 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared._White.Lighting.PointLight.Airlock;
[RegisterComponent, NetworkedComponent]
public sealed partial class PointLightAirlockComponent : Component
{
[ViewVariables]
public bool IsLightsEnabled;
[ViewVariables]
public bool LastBoltsState;
[ViewVariables]
public bool IsEmagged;
[ViewVariables]
public readonly string RedColor = "#D56C6C";
[ViewVariables]
public readonly string BlueColor = "#7F93C0";
[ViewVariables]
public readonly string YellowColor = "#BDC07F";
[ViewVariables]
public readonly string GreenColor = "#7FC080";
}