Files
tbd-station-14/Content.Shared/Light/SharedPoweredLightVisuals.cs
2021-06-09 22:19:39 +02:00

30 lines
477 B
C#

#nullable enable
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
}
}