1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-13 10:08:31 +00:00
RGB.NET/RGB.NET.Devices.Razer/Enum/RazerEndpointType.cs
Robert f03ae301aa Razer - Added endpoint types to device info
Razer - Only add the first device of each endpoint type
Razer - Fixed mouse effect ID
2021-03-17 22:27:42 +01:00

44 lines
936 B
C#

namespace RGB.NET.Devices.Razer
{
/// <summary>
/// Represents a type of Razer SDK endpoint
/// </summary>
public enum RazerEndpointType
{
/// <summary>
/// The keyboard endpoint
/// </summary>
Keyboard,
/// <summary>
/// The laptop keyboard endpoint, shares the <see cref="Keyboard"/> endpoint but has a different LED layout
/// </summary>
LaptopKeyboard,
/// <summary>
/// The mouse endpoint
/// </summary>
Mouse,
/// <summary>
/// The headset endpoint
/// </summary>
Headset,
/// <summary>
/// The mousepad endpoint
/// </summary>
Mousepad,
/// <summary>
/// The keypad endpoint
/// </summary>
Keypad,
/// <summary>
/// The Chroma Link endpoint
/// </summary>
ChromaLink,
}
}