mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-13 00:58:31 +00:00
20 lines
608 B
C#
20 lines
608 B
C#
// ReSharper disable UnusedMember.Global
|
|
// ReSharper disable InconsistentNaming
|
|
|
|
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;
|
|
}
|
|
}
|