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