mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 10:08:31 +00:00
22 lines
613 B
C#
22 lines
613 B
C#
// ReSharper disable InconsistentNaming
|
|
// ReSharper disable UnusedMember.Global
|
|
|
|
#pragma warning disable 1591 // Missing XML comment for publicly visible type or member
|
|
|
|
namespace RGB.NET.Devices.Wooting.Enum
|
|
{
|
|
/// <summary>
|
|
/// Contains list of available logical layouts for cooler master keyboards.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Based on what is available in the shop: https://wooting.store/collections/wooting-keyboards/products/wooting-two
|
|
/// </remarks>
|
|
public enum WootingLogicalKeyboardLayout
|
|
{
|
|
US = 0,
|
|
UK = 1,
|
|
DE = 2,
|
|
ND = 3
|
|
};
|
|
}
|