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

28 lines
616 B
C#

// ReSharper disable InconsistentNaming
// ReSharper disable UnusedMember.Global
using System;
namespace RGB.NET.Devices.CorsairLegacy;
/// <summary>
/// Contains a list of corsair device capabilities.
/// </summary>
[Flags]
public enum CorsairDeviceCaps
{
/// <summary>
/// For devices that do not support any SDK functions.
/// </summary>
None = 0,
/// <summary>
/// For devices that has controlled lighting.
/// </summary>
Lighting = 1,
/// <summary>
/// For devices that provide current state through set of properties.
/// </summary>
PropertyLookup = 2
};