2024-06-21 06:15:55 +03:00
|
|
|
|
using Robust.Shared.GameStates;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared._White.Lighting.PointLight.Airlock;
|
|
|
|
|
|
|
|
|
|
|
|
[RegisterComponent, NetworkedComponent]
|
|
|
|
|
|
public sealed partial class PointLightAirlockComponent : Component
|
|
|
|
|
|
{
|
|
|
|
|
|
[ViewVariables]
|
2024-06-22 13:53:37 +03:00
|
|
|
|
public bool IsLightsEnabled;
|
2024-06-21 06:15:55 +03:00
|
|
|
|
|
|
|
|
|
|
[ViewVariables]
|
2024-06-22 13:53:37 +03:00
|
|
|
|
public bool LastBoltsState;
|
2024-06-21 06:15:55 +03:00
|
|
|
|
|
2024-06-29 09:49:43 +03:00
|
|
|
|
[ViewVariables]
|
|
|
|
|
|
public bool IsEmagged;
|
|
|
|
|
|
|
2024-06-21 06:15:55 +03:00
|
|
|
|
[ViewVariables]
|
2024-06-22 13:53:37 +03:00
|
|
|
|
public readonly string RedColor = "#D56C6C";
|
2024-06-21 06:15:55 +03:00
|
|
|
|
|
|
|
|
|
|
[ViewVariables]
|
2024-06-22 13:53:37 +03:00
|
|
|
|
public readonly string BlueColor = "#7F93C0";
|
|
|
|
|
|
|
|
|
|
|
|
[ViewVariables]
|
|
|
|
|
|
public readonly string YellowColor = "#BDC07F";
|
|
|
|
|
|
|
|
|
|
|
|
[ViewVariables]
|
|
|
|
|
|
public readonly string GreenColor = "#7FC080";
|
2024-06-21 06:15:55 +03:00
|
|
|
|
}
|