1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-13 01:58:30 +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>
public enum RGBDeviceLighting
{
/// <summary>
/// The <see cref="IRGBDevice"/> doesn't support lighting,
/// </summary>
None = 0,
/// <summary>
/// The <see cref="IRGBDevice"/> supports per-key-lightning.
/// </summary>
Key = 0,
Key = 1,
/// <summary>
/// The <see cref="IRGBDevice"/> supports per-keyboard-lightning.
/// </summary>
Keyboard = 1,
Keyboard = 2,
}
}