mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-12 17:48:31 +00:00
17 lines
354 B
C#
17 lines
354 B
C#
// ReSharper disable UnusedMember.Global
|
|
// ReSharper disable InconsistentNaming
|
|
|
|
namespace RGB.NET.Devices.Corsair;
|
|
|
|
/// <summary>
|
|
/// iCUE-SDK: Contains a list of available physical layouts for corsair keyboards.
|
|
/// </summary>
|
|
public enum CorsairPhysicalKeyboardLayout
|
|
{
|
|
Invalid = 0,
|
|
US = 1,
|
|
UK = 2,
|
|
JP = 3,
|
|
KR = 4,
|
|
BR = 5
|
|
} |