summaryrefslogtreecommitdiff
path: root/code/common/Command.cs
blob: 31075ec9ca2125ef0169ad05cbb7202ddd23b3c6 (plain)
1
2
3
4
5
6
7
namespace common
{
    public interface Command
    {
        void run();
    }
}