summaryrefslogtreecommitdiff
path: root/code/common/CommandProcessor.cs
blob: 65f5796cfeeff3bd965f40e49cb908f57287e71b (plain)
1
2
3
4
5
6
7
8
namespace common
{
    public interface CommandProcessor : Command
    {
        void add(Command command_to_process);
        void stop();
    }
}