mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-12 17:48:31 +00:00
17 lines
422 B
C#
17 lines
422 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.CoolerMaster;
|
|
|
|
/// <summary>
|
|
/// Contains list of available physical layouts for cooler master keyboards.
|
|
/// </summary>
|
|
public enum CoolerMasterPhysicalKeyboardLayout
|
|
{
|
|
UNINIT = 0,
|
|
US = 1,
|
|
EU = 2,
|
|
JP = 3
|
|
} |