1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-12 17:48:31 +00:00
RGB.NET/RGB.NET.Devices.Wooting/Enum/WootingLogicalKeyboardLayout.cs
2019-12-11 22:34:19 +01:00

17 lines
423 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>
public enum WootingLogicalKeyboardLayout
{
US = 0,
EU = 1
};
}