using RGB.NET.Core; namespace RGB.NET.Devices.OpenRGB { /// /// /// Represents a generic OpenRGB Device. /// public abstract class AbstractOpenRGBDevice : AbstractRGBDevice, IOpenRGBDevice where TDeviceInfo : AbstractOpenRGBDeviceInfo { #region Constructors /// /// Initializes a new instance of the class. /// /// The generic information provided by OpenRGB for this device. /// The queue used to update this device. protected AbstractOpenRGBDevice(TDeviceInfo info, IUpdateQueue updateQueue) : base(info, updateQueue) { } #endregion } }