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