Files
OldThink/Content.Shared/Light/SharedPoweredLightVisuals.cs
Remuchi e8f4a2056b Revert "Glowy lights - light fixtures now actually glow (#23428)"
This reverts commit 1a531342c5.

# Conflicts:
#	Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml
#	Resources/Textures/Structures/Wallmounts/Lighting/light_tube.rsi/glow.png
#	Resources/Textures/Structures/Wallmounts/Lighting/light_tube.rsi/meta.json
2024-01-28 18:46:11 +07: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
}
}