mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-12 08:48:30 +00:00
20 lines
619 B
C#
20 lines
619 B
C#
// ReSharper disable UnusedMember.Global
|
|
// ReSharper disable InconsistentNaming
|
|
|
|
#pragma warning disable 1591 // Missing XML comment for publicly visible type or member
|
|
|
|
using CUE.NET.Devices.Generic.Enums;
|
|
|
|
namespace CUE.NET.Devices.Headset.Enums
|
|
{
|
|
/// <summary>
|
|
/// Contains list of all LEDs available for corsair headsets.
|
|
/// </summary>
|
|
public static class CorsairHeadsetLedId
|
|
{
|
|
public const CorsairLedId Invalid = CorsairLedId.Invalid;
|
|
public const CorsairLedId LeftLogo = CorsairLedId.LeftLogo;
|
|
public const CorsairLedId RightLogo = CorsairLedId.RightLogo;
|
|
}
|
|
}
|