using System.Collections.Generic; using RGB.NET.Core; using RGB.NET.Devices.Wooting.Enum; using RGB.NET.Devices.Wooting.Generic; namespace RGB.NET.Devices.Wooting.Keypad; /// /// /// Represents a Wooting keyboard. /// public sealed class WootingKeypadRGBDevice : WootingRGBDevice, IKeypad { #region Constructors /// /// /// Initializes a new instance of the class. /// /// The type of the Wooting device. /// The specific information provided by Wooting for the keyboard /// The update queue used to update this device. internal WootingKeypadRGBDevice(WootingDeviceType deviceType, WootingKeypadRGBDeviceInfo info, IUpdateQueue updateQueue) : base(deviceType, info, updateQueue) { } #endregion }