using System; using System.Collections.Generic; namespace RGB.NET.Core { /// /// Represents a generic device provider. /// public interface IRGBDeviceProvider : IDisposable { #region Properties & Fields /// /// Indicates if the used SDK is initialized and ready to use. /// bool IsInitialized { get; } /// /// Gets a list of loaded by this . /// IEnumerable Devices { get; } #endregion } }