Files
crystall-punk-14/Content.Shared/Light/SharedPoweredLightVisuals.cs

28 lines
441 B
C#
Raw Permalink Normal View History

2021-06-09 22:19:39 +02:00
using Robust.Shared.Serialization;
2021-06-09 22:19:39 +02:00
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
}
}