mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-12 08:48:30 +00:00
18 lines
364 B
C#
18 lines
364 B
C#
// ReSharper disable UnusedMember.Global
|
|
// ReSharper disable InconsistentNaming
|
|
|
|
namespace CUE.NET.Devices.Mouse.Enums
|
|
{
|
|
/// <summary>
|
|
/// Contains list of all LEDs available for corsair mice.
|
|
/// </summary>
|
|
public enum CorsairMouseLedId
|
|
{
|
|
Invalid = 0,
|
|
B1 = 148,
|
|
B2 = 149,
|
|
B3 = 150,
|
|
B4 = 151
|
|
}
|
|
}
|