1
0
mirror of synced 2024-11-05 01:49:15 +00:00
MassiveKnob/Windows/MassiveKnob.Plugin/IMassiveKnobHardwarePlugin.cs
Mark van Renswoude dc0e761244 Implemented basic plugin architecture
Moving interface to WPF for easier integration
2021-02-21 14:04:24 +01:00

16 lines
417 B
C#

using System.Collections.Generic;
namespace MassiveKnob.Plugin
{
/// <summary>
/// Implemented by plugins which interface with Massive Knob device.
/// </summary>
public interface IMassiveKnobDevicePlugin : IMassiveKnobPlugin
{
/// <summary>
/// A list of devices supported by the plugin.
/// </summary>
IEnumerable<IMassiveKnobDevice> Devices { get; }
}
}