mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 10:08:31 +00:00
18 lines
531 B
C#
18 lines
531 B
C#
using RGB.NET.Core;
|
|
using RGB.NET.Devices.Wooting.Generic;
|
|
using RGB.NET.Devices.Wooting.Native;
|
|
|
|
namespace RGB.NET.Devices.Wooting.Keypad;
|
|
|
|
/// <summary>
|
|
/// Represents a generic information for a <see cref="T:RGB.NET.Devices.Wooting.Keypad.WootingKeypadRGBDevice" />.
|
|
/// </summary>
|
|
public sealed class WootingKeypadRGBDeviceInfo : WootingRGBDeviceInfo
|
|
{
|
|
internal WootingKeypadRGBDeviceInfo(_WootingDeviceInfo deviceInfo, byte deviceIndex)
|
|
: base(RGBDeviceType.Keypad, deviceInfo, deviceIndex)
|
|
{
|
|
|
|
}
|
|
}
|