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