// ReSharper disable InconsistentNaming // ReSharper disable UnusedMember.Global namespace CUE.NET.Enums { /// /// Contains list of available logical layouts for keyboards. /// public enum CorsairLogicalLayout { /// /// Dummy value /// CLL_Invalid = 0, CLL_US_Int = 1, CLL_NA = 2, CLL_EU = 3, CLL_UK = 4, CLL_BE = 5, CLL_BR = 6, CLL_CH = 7, CLL_CN = 8, CLL_DE = 9, CLL_ES = 10, CLL_FR = 11, CLL_IT = 12, CLL_ND = 13, CLL_RU = 14, CLL_JP = 15, CLL_KR = 16, CLL_TW = 17, CLL_MEX = 18 }; }