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