using RGB.NET.Core.Layout; namespace RGB.NET.Core { /// /// Contains a list of different lightning-modes used by . /// public enum RGBDeviceLighting { /// /// The doesn't support lighting, /// None = 0, /// /// The supports per-key-lightning. /// Key = 1, /// /// The supports per-device-lightning. /// Device = 2, } }