mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-12 08:48:30 +00:00
33 lines
681 B
C#
33 lines
681 B
C#
// ReSharper disable InconsistentNaming
|
|
// ReSharper disable UnusedMember.Global
|
|
|
|
#pragma warning disable 1591 // Missing XML comment for publicly visible type or member
|
|
|
|
namespace CUE.NET.Devices.Keyboard.Enums
|
|
{
|
|
/// <summary>
|
|
/// Contains list of available logical layouts for keyboards.
|
|
/// </summary>
|
|
public enum CorsairLogicalKeyboardLayout
|
|
{
|
|
US_Int = 1,
|
|
NA = 2,
|
|
EU = 3,
|
|
UK = 4,
|
|
BE = 5,
|
|
BR = 6,
|
|
CH = 7,
|
|
CN = 8,
|
|
DE = 9,
|
|
ES = 10,
|
|
FR = 11,
|
|
IT = 12,
|
|
ND = 13,
|
|
RU = 14,
|
|
JP = 15,
|
|
KR = 16,
|
|
TW = 17,
|
|
MEX = 18
|
|
};
|
|
}
|