1
0
mirror of https://github.com/DarthAffe/CUE.NET.git synced 2025-12-12 08:48:30 +00:00
CUE.NET/Enums/CorsairDeviceCaps.cs

22 lines
495 B
C#

// ReSharper disable InconsistentNaming
// ReSharper disable UnusedMember.Global
namespace CUE.NET.Enums
{
/// <summary>
/// Contains list of device capabilities
/// </summary>
public enum CorsairDeviceCaps
{
/// <summary>
/// For devices that do not support any SDK functions
/// </summary>
CDC_None = 0,
/// <summary>
/// For devices that has controlled lighting
/// </summary>
CDC_Lighting = 1
};
}