namespace OpenTap
{
/// Similar to Action, but this can be implemented by other classes.
interface IInvokable
{
void Invoke();
}
/// Similar to Action(T), but this can be implemented by some class.
interface IInvokable
{
void Invoke(T a);
}
/// Similar to Action(T,T2), but this can be implemented by some class.
interface IInvokable
{
void Invoke(T a, T2 b);
}
}