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

19 lines
398 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
}
}