6
StarHorizon_Public/Content.Shared/Light/SharedPoweredLightVisuals.cs
2026-01-18 12:53:36 +03: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
}
}