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