mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 01:58:30 +00:00
15 lines
394 B
C#
15 lines
394 B
C#
using System.Collections.Generic;
|
|
using RGB.NET.Core;
|
|
|
|
namespace RGB.NET.Devices.Corsair
|
|
{
|
|
internal static class HeadsetIdMapping
|
|
{
|
|
internal static readonly Dictionary<LedId, CorsairLedId> DEFAULT = new Dictionary<LedId, CorsairLedId>
|
|
{
|
|
{ LedId.Headset1, CorsairLedId.LeftLogo },
|
|
{ LedId.Headset2, CorsairLedId.RightLogo },
|
|
};
|
|
}
|
|
}
|