// ReSharper disable MemberCanBePrivate.Global // ReSharper disable UnusedMember.Global using RGB.NET.Core; namespace RGB.NET.Devices.CorsairLegacy; /// /// /// Represents a corsair touchbar. /// public class CorsairTouchbarRGBDevice : CorsairRGBDevice, IDRAM { #region Constructors /// /// /// Initializes a new instance of the class. /// /// The specific information provided by CUE for the touchbar. /// The queue used to update this device. internal CorsairTouchbarRGBDevice(CorsairTouchbarRGBDeviceInfo info, CorsairDeviceUpdateQueue updateQueue) : base(info, LedMappings.Keyboard, updateQueue) //TODO DarthAffe 17.07.2022: Find someone with such a device and check which LedIds are actually used { } #endregion }