Skip to content

Command interfaces

Jesse R. Jose edited this page Jan 19, 2020 · 1 revision

Interfaces

To use the insterfaces is simple as... better read the code.

public class Command<T> : Murk.Command.ICommand<T>
{
  public void Execute(T parameter)
  {
    // do your thing...
  }
}

Clone this wiki locally