Files
tbd-station-14/Content.Shared/Light/SharedPoweredLightVisuals.cs
deathride58 1a531342c5 Glowy lights - light fixtures now actually glow (#23428)
* glowy lights - makes light fixtures actually physically glow when active

* serviced the lights

* ya sure
2024-01-03 19:46:11 +11:00

28 lines
441 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared.Light
{
[Serializable, NetSerializable]
public enum PoweredLightVisuals : byte
{
BulbState,
Blinking
}
[Serializable, NetSerializable]
public enum PoweredLightState : byte
{
Empty,
On,
Off,
Broken,
Burned
}
public enum PoweredLightLayers : byte
{
Base,
Glow
}
}