1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-13 01:58:30 +00:00
RGB.NET/RGB.NET.Core/Devices/Layout/LayoutLighting.cs

19 lines
479 B
C#

namespace RGB.NET.Core.Layout
{
/// <summary>
/// Contains a list of different lightning-modes used by <see cref="DeviceLayout"/>.
/// </summary>
public enum LayoutLighting
{
/// <summary>
/// The <see cref="IRGBDevice"/> supports per-key-lightning.
/// </summary>
Key = 0,
/// <summary>
/// The <see cref="IRGBDevice"/> supports per-keyboard-lightning.
/// </summary>
Keyboard = 1,
}
}