mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-12 08:48:30 +00:00
16 lines
392 B
C#
16 lines
392 B
C#
// ReSharper disable InconsistentNaming
|
|
// ReSharper disable UnusedMember.Global
|
|
|
|
#pragma warning disable 1591 // Missing XML comment for publicly visible type or member
|
|
|
|
namespace CUE.NET.Devices.Generic.Enums
|
|
{
|
|
/// <summary>
|
|
/// Contains list of available SDK access modes.
|
|
/// </summary>
|
|
public enum CorsairAccessMode
|
|
{
|
|
ExclusiveLightingControl = 0
|
|
};
|
|
}
|