Files
tbd-station-14/Content.Shared/Light/SharedPoweredLightVisuals.cs
2021-07-16 17:37:09 -07:00

29 lines
460 B
C#

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