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

17 lines
359 B
C#

// ReSharper disable InconsistentNaming
using System;
#pragma warning disable 1591 // Missing XML comment for publicly visible type or member
namespace RGB.NET.Devices.Logitech;
[Flags]
public enum LogitechDeviceCaps
{
None = 0,
Monochrome = 1 << 0,
DeviceRGB = 1 << 1,
PerKeyRGB = 1 << 2,
All = Monochrome | DeviceRGB | PerKeyRGB
}