mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 01:58:30 +00:00
21 lines
676 B
C#
21 lines
676 B
C#
namespace RGB.NET.Core
|
|
{
|
|
/// <summary>
|
|
/// Represents a generic device provider loaded used to dynamically load devices into an application.
|
|
/// This class should always provide an empty public constructor!
|
|
/// </summary>
|
|
public interface IRGBDeviceProviderLoader
|
|
{
|
|
/// <summary>
|
|
/// Indicates if the returned device-provider needs some specific initialization before use.
|
|
/// </summary>
|
|
bool RequiresInitialization { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the device-provider.
|
|
/// </summary>
|
|
/// <returns>The device-provider.</returns>
|
|
IRGBDeviceProvider GetDeviceProvider();
|
|
}
|
|
}
|