1
0
mirror of synced 2024-06-29 02:47:39 +00:00
MassiveKnob/Windows/MassiveKnob.Plugin/IMassiveKnobActionPlugin.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
479 B
C#

using System.Collections.Generic;
namespace MassiveKnob.Plugin
{
/// <summary>
/// Implemented by plugins supporting actions which can be assigned to knobs or buttons.
/// </summary>
public interface IMassiveKnobActionPlugin : IMassiveKnobPlugin
{
/// <summary>
/// A list of actions supported by the plugin which can be assigned to knobs or buttons.
/// </summary>
IEnumerable<IMassiveKnobAction> Actions { get; }
}
}