mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
* glowy lights - makes light fixtures actually physically glow when active * serviced the lights * ya sure (cherry picked from commit 1a531342c5c8b2860054f79479b02c8083f3b5d0)
28 lines
441 B
C#
28 lines
441 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,
|
|
Glow
|
|
}
|
|
}
|