From 5bd1012fbe01b6f03854212be4aa6f8b1c8a2b94 Mon Sep 17 00:00:00 2001 From: Darth Affe Date: Sat, 4 Feb 2017 17:07:15 +0100 Subject: [PATCH] Added 'none' as device lighting --- RGB.NET.Core/Devices/RGBDeviceLighting.cs | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/RGB.NET.Core/Devices/RGBDeviceLighting.cs b/RGB.NET.Core/Devices/RGBDeviceLighting.cs index 7aff222..b362dc9 100644 --- a/RGB.NET.Core/Devices/RGBDeviceLighting.cs +++ b/RGB.NET.Core/Devices/RGBDeviceLighting.cs @@ -7,14 +7,19 @@ namespace RGB.NET.Core /// public enum RGBDeviceLighting { + /// + /// The doesn't support lighting, + /// + None = 0, + /// /// The supports per-key-lightning. /// - Key = 0, + Key = 1, /// /// The supports per-keyboard-lightning. /// - Keyboard = 1, + Keyboard = 2, } }