Files
tbd-station-14/Content.Shared/Light/SharedPoweredLightVisuals.cs
2022-05-13 17:59:03 +10:00

27 lines
427 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
}
}