mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-12 08:48:30 +00:00
37 lines
1.5 KiB
C#
37 lines
1.5 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.Keyboard.Enums
|
|
{
|
|
/// <summary>
|
|
/// Contains list of all LEDs available for corsair keyboards.
|
|
/// </summary>
|
|
public static class CorsairKeyboardKeyId
|
|
{
|
|
public const CorsairKeyId Invalid = CorsairKeyId.Invalid;
|
|
|
|
public const CorsairKeyId G1 = CorsairKeyId.G1;
|
|
public const CorsairKeyId G2 = CorsairKeyId.G2;
|
|
public const CorsairKeyId G3 = CorsairKeyId.G3;
|
|
public const CorsairKeyId G4 = CorsairKeyId.G4;
|
|
public const CorsairKeyId G5 = CorsairKeyId.G5;
|
|
public const CorsairKeyId G6 = CorsairKeyId.G6;
|
|
public const CorsairKeyId G7 = CorsairKeyId.G7;
|
|
public const CorsairKeyId G8 = CorsairKeyId.G8;
|
|
public const CorsairKeyId G9 = CorsairKeyId.G9;
|
|
public const CorsairKeyId G10 = CorsairKeyId.G10;
|
|
public const CorsairKeyId G11 = CorsairKeyId.G11;
|
|
public const CorsairKeyId G12 = CorsairKeyId.G12;
|
|
public const CorsairKeyId G13 = CorsairKeyId.G13;
|
|
public const CorsairKeyId G14 = CorsairKeyId.G14;
|
|
public const CorsairKeyId G15 = CorsairKeyId.G15;
|
|
public const CorsairKeyId G16 = CorsairKeyId.G16;
|
|
public const CorsairKeyId G17 = CorsairKeyId.G17;
|
|
public const CorsairKeyId G18 = CorsairKeyId.G18;
|
|
}
|
|
}
|