SharedPoweredLightVisuals.cs 441 B

123456789101112131415161718192021222324252627
  1. using Robust.Shared.Serialization;
  2. namespace Content.Shared.Light
  3. {
  4. [Serializable, NetSerializable]
  5. public enum PoweredLightVisuals : byte
  6. {
  7. BulbState,
  8. Blinking
  9. }
  10. [Serializable, NetSerializable]
  11. public enum PoweredLightState : byte
  12. {
  13. Empty,
  14. On,
  15. Off,
  16. Broken,
  17. Burned
  18. }
  19. public enum PoweredLightLayers : byte
  20. {
  21. Base,
  22. Glow
  23. }
  24. }