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