10 lines
277 B
C#
10 lines
277 B
C#
|
namespace MassiveKnob.Plugin
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Required to be implemented for Action type InputDigital. Receives an update when a knob's position changes.
|
|||
|
/// </summary>
|
|||
|
public interface IMassiveKnobDigitalAction : IMassiveKnobActionInstance
|
|||
|
{
|
|||
|
}
|
|||
|
}
|