mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-13 09:08:34 +00:00
18 lines
530 B
C#
18 lines
530 B
C#
// ReSharper disable UnusedMember.Global
|
|
// ReSharper disable InconsistentNaming
|
|
|
|
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;
|
|
}
|
|
}
|