1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-13 10:08:31 +00:00

Added 'none' as device lighting

This commit is contained in:
Darth Affe 2017-02-04 17:07:15 +01:00
parent 14e9065408
commit 5bd1012fbe

View File

@ -7,14 +7,19 @@ namespace RGB.NET.Core
/// </summary> /// </summary>
public enum RGBDeviceLighting public enum RGBDeviceLighting
{ {
/// <summary>
/// The <see cref="IRGBDevice"/> doesn't support lighting,
/// </summary>
None = 0,
/// <summary> /// <summary>
/// The <see cref="IRGBDevice"/> supports per-key-lightning. /// The <see cref="IRGBDevice"/> supports per-key-lightning.
/// </summary> /// </summary>
Key = 0, Key = 1,
/// <summary> /// <summary>
/// The <see cref="IRGBDevice"/> supports per-keyboard-lightning. /// The <see cref="IRGBDevice"/> supports per-keyboard-lightning.
/// </summary> /// </summary>
Keyboard = 1, Keyboard = 2,
} }
} }