namespace MassiveKnob.Plugin
{
///
public interface IMassiveKnobActionContext : IMassiveKnobContext
{
///
/// Sets the state of the signal. Only valid for OutputSignal action types, will raise an exception otherwise.
///
/// Whether the signal is on or off.
void SetSignal(bool on);
}
}