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

42 lines
797 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,
}