mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 01:58:30 +00:00
25 lines
592 B
C#
25 lines
592 B
C#
using RGB.NET.Core;
|
|
|
|
namespace RGB.NET.Devices.Novation
|
|
{
|
|
/// <summary>
|
|
/// Represents a device provider loaded used to dynamically load novation devices into an application.
|
|
/// </summary>
|
|
public class NovationDeviceProviderLoader : IRGBDeviceProviderLoader
|
|
{
|
|
#region Properties & Fields
|
|
|
|
/// <inheritdoc />
|
|
public bool RequiresInitialization => false;
|
|
|
|
#endregion
|
|
|
|
#region Methods
|
|
|
|
/// <inheritdoc />
|
|
public IRGBDeviceProvider GetDeviceProvider() => NovationDeviceProvider.Instance;
|
|
|
|
#endregion
|
|
}
|
|
}
|