using RGB.NET.Core;
namespace RGB.NET.Devices.Novation
{
///
/// Represents a device provider loaded used to dynamically load novation devices into an application.
///
public class NovationDeviceProviderLoader : IRGBDeviceProviderLoader
{
#region Properties & Fields
///
public bool RequiresInitialization => false;
#endregion
#region Methods
///
public IRGBDeviceProvider GetDeviceProvider() => NovationDeviceProvider.Instance;
#endregion
}
}