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.Corsair/Enum/CorsairDeviceCaps.cs

25 lines
535 B
C#

// ReSharper disable InconsistentNaming
// ReSharper disable UnusedMember.Global
using System;
namespace RGB.NET.Devices.Corsair
{
/// <summary>
/// Contains 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
};
}