mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 10:08:31 +00:00
12 lines
238 B
C#
12 lines
238 B
C#
namespace RGB.NET.Devices.Wooting.Enum
|
|
{
|
|
public enum WootingDeviceType
|
|
{
|
|
/// 10 Keyless Keyboard. E.g. Wooting One
|
|
KeyboardTKL = 1,
|
|
|
|
/// Full Size keyboard. E.g. Wooting Two
|
|
Keyboard = 2
|
|
}
|
|
}
|