mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-12 16:58:29 +00:00
24 lines
809 B
C#
24 lines
809 B
C#
// ReSharper disable UnusedMember.Global
|
|
// ReSharper disable InconsistentNaming
|
|
|
|
#pragma warning disable 1591 // Missing XML comment for publicly visible type or member
|
|
|
|
using CUE.NET.Devices.Generic.Enums;
|
|
|
|
namespace CUE.NET.Devices.Mouse.Enums
|
|
{
|
|
/// <summary>
|
|
/// Contains list of all LEDs available for corsair mice.
|
|
/// </summary>
|
|
public static class CorsairMouseLedId
|
|
{
|
|
public const CorsairLedId Invalid = CorsairLedId.Invalid;
|
|
public const CorsairLedId B1 = CorsairLedId.B1;
|
|
public const CorsairLedId B2 = CorsairLedId.B2;
|
|
public const CorsairLedId B3 = CorsairLedId.B3;
|
|
public const CorsairLedId B4 = CorsairLedId.B4;
|
|
public const CorsairLedId B5 = CorsairLedId.B5;
|
|
public const CorsairLedId B6 = CorsairLedId.B6;
|
|
}
|
|
}
|