using RGB.NET.Core; using RGB.NET.Devices.CorsairLegacy.Native; namespace RGB.NET.Devices.CorsairLegacy; /// /// /// Represents a generic information for a . /// public class CorsairMousepadRGBDeviceInfo : CorsairRGBDeviceInfo { #region Constructors /// /// /// Internal constructor of managed . /// /// The index if the . /// The native -struct internal CorsairMousepadRGBDeviceInfo(int deviceIndex, _CorsairDeviceInfo nativeInfo) : base(deviceIndex, RGBDeviceType.Mousepad, nativeInfo) { } #endregion }