mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-13 09:08:34 +00:00
14 lines
303 B
C#
14 lines
303 B
C#
// ReSharper disable InconsistentNaming
|
|
// ReSharper disable UnusedMember.Global
|
|
|
|
namespace CUE.NET.Devices.Generic.Enums
|
|
{
|
|
/// <summary>
|
|
/// Contains list of available SDK access modes.
|
|
/// </summary>
|
|
public enum CorsairAccessMode
|
|
{
|
|
ExclusiveLightingControl = 0
|
|
};
|
|
}
|