mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-12 16:58:29 +00:00
31 lines
1.1 KiB
C#
31 lines
1.1 KiB
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 CorsairMouseKeyId
|
|
{
|
|
public const CorsairKeyId Invalid = CorsairKeyId.Invalid;
|
|
|
|
public const CorsairKeyId M1 = CorsairKeyId.M1;
|
|
public const CorsairKeyId M2 = CorsairKeyId.M2;
|
|
public const CorsairKeyId M3 = CorsairKeyId.M3;
|
|
public const CorsairKeyId M4 = CorsairKeyId.M4;
|
|
public const CorsairKeyId M5 = CorsairKeyId.M5;
|
|
public const CorsairKeyId M6 = CorsairKeyId.M6;
|
|
public const CorsairKeyId M7 = CorsairKeyId.M7;
|
|
public const CorsairKeyId M8 = CorsairKeyId.M8;
|
|
public const CorsairKeyId M9 = CorsairKeyId.M9;
|
|
public const CorsairKeyId M10 = CorsairKeyId.M10;
|
|
public const CorsairKeyId M11 = CorsairKeyId.M11;
|
|
public const CorsairKeyId M12 = CorsairKeyId.M12;
|
|
}
|
|
}
|