using System;
using RGB.NET.Core;
namespace RGB.NET.Devices.Novation
{
///
/// Represents a generic information for a .
///
public class NovationLaunchpadRGBDeviceInfo : NovationRGBDeviceInfo
{
#region Constructors
///
/// Internal constructor of managed .
///
/// The represented device model.
internal NovationLaunchpadRGBDeviceInfo(string model)
: base(RGBDeviceType.LedMatrix, model)
{
Image = new Uri(PathHelper.GetAbsolutePath($@"Images\Novation\Launchpads\{Model.Replace(" ", string.Empty).ToUpper()}.png"), UriKind.Absolute);
}
#endregion
}
}