mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 10:08:31 +00:00
25 lines
535 B
C#
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
|
|
};
|
|
}
|