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