// ReSharper disable MemberCanBePrivate.Global
// ReSharper disable UnusedMember.Global
using RGB.NET.Core;
namespace RGB.NET.Devices.CorsairLegacy;
///
///
/// Represents a corsair graphics card.
///
public class CorsairGraphicsCardRGBDevice : CorsairRGBDevice, IGraphicsCard
{
#region Constructors
///
///
/// Initializes a new instance of the class.
///
/// The specific information provided by CUE for the graphics card.
/// The queue used to update this device.
internal CorsairGraphicsCardRGBDevice(CorsairGraphicsCardRGBDeviceInfo info, CorsairDeviceUpdateQueue updateQueue)
: base(info, LedMappings.GraphicsCard, updateQueue)
{ }
#endregion
}