1
0
mirror of https://github.com/DarthAffe/CUE.NET.git synced 2025-12-12 08:48:30 +00:00
CUE.NET/Enums/CorsairLogicalLayout.cs

36 lines
734 B
C#

// ReSharper disable InconsistentNaming
// ReSharper disable UnusedMember.Global
namespace CUE.NET.Enums
{
/// <summary>
/// Contains list of available logical layouts for keyboards.
/// </summary>
public enum CorsairLogicalLayout
{
/// <summary>
/// Dummy value
/// </summary>
CLL_Invalid = 0,
CLL_US_Int = 1,
CLL_NA = 2,
CLL_EU = 3,
CLL_UK = 4,
CLL_BE = 5,
CLL_BR = 6,
CLL_CH = 7,
CLL_CN = 8,
CLL_DE = 9,
CLL_ES = 10,
CLL_FR = 11,
CLL_IT = 12,
CLL_ND = 13,
CLL_RU = 14,
CLL_JP = 15,
CLL_KR = 16,
CLL_TW = 17,
CLL_MEX = 18
};
}