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