// ReSharper disable MemberCanBePrivate.Global // ReSharper disable UnusedMember.Global using RGB.NET.Core; using System.Collections.Generic; namespace RGB.NET.Devices.Corsair; /// /// /// Represents a corsair ledStrip. /// public sealed class CorsairLedStripRGBDevice : CorsairRGBDevice, ILedStripe { #region Constructors /// /// /// Initializes a new instance of the class. /// /// The specific information provided by CUE for the ledStrip. /// The queue used to update this device. internal CorsairLedStripRGBDevice(CorsairLedStripRGBDeviceInfo info, CorsairDeviceUpdateQueue updateQueue) : base(info, updateQueue) { } #endregion #region Methods protected override LedMapping CreateMapping(IEnumerable ids) => LedMappings.CreateLedStripMapping(ids); #endregion }