using System;
using RGB.NET.Core;
namespace RGB.NET.Devices.Asus
{
///
///
/// Represents a generic information for a .
///
public class AsusGraphicsCardRGBDeviceInfo : AsusRGBDeviceInfo
{
#region Constructors
///
///
/// Internal constructor of managed .
///
/// The type of the .
/// The handle of the .
internal AsusGraphicsCardRGBDeviceInfo(RGBDeviceType deviceType, IntPtr handle)
: base(deviceType, handle)
{
Image = new Uri(PathHelper.GetAbsolutePath($@"Images\Asus\GraphicsCards\{Model.Replace(" ", string.Empty).ToUpper()}.png"), UriKind.Absolute);
}
#endregion
}
}