mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-12 17:48:31 +00:00
25 lines
571 B
C#
25 lines
571 B
C#
using RGB.NET.Core;
|
|
|
|
namespace RGB.NET.Devices.DMX
|
|
{
|
|
/// <summary>
|
|
/// Represents a device provider loaded used to dynamically load DMX devices into an application.
|
|
/// </summary>
|
|
public class DMXDeviceProviderLoader : IRGBDeviceProviderLoader
|
|
{
|
|
#region Properties & Fields
|
|
|
|
/// <inheritdoc />
|
|
public bool RequiresInitialization => true;
|
|
|
|
#endregion
|
|
|
|
#region Methods
|
|
|
|
/// <inheritdoc />
|
|
public IRGBDeviceProvider GetDeviceProvider() => DMXDeviceProvider.Instance;
|
|
|
|
#endregion
|
|
}
|
|
}
|