1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-13 01:58:30 +00:00
RGB.NET/RGB.NET.Devices.SoIP/SoIPDeviceProviderLoader.cs

25 lines
594 B
C#

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