1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-12 17:48:31 +00:00
RGB.NET/RGB.NET.Devices.Logitech/Enum/LogitechDeviceType.cs
2021-08-01 16:40:13 +02:00

17 lines
328 B
C#

#pragma warning disable 1591
namespace RGB.NET.Devices.Logitech
{
/// <summary>
/// Contains list of available logitech device types.
/// </summary>
public enum LogitechDeviceType
{
Keyboard = 0x0,
Mouse = 0x3,
Mousemat = 0x4,
Headset = 0x8,
Speaker = 0xE
}
}