forked from Moux23333/FreeSR
9 lines
219 B
C#
9 lines
219 B
C#
namespace FreeSR.Shared.Command
|
|
{
|
|
using FreeSR.Shared.Command.Context;
|
|
|
|
public interface ICommandCategory
|
|
{
|
|
CommandResult Invoke(ICommandContext context, string[] parameters, uint depth);
|
|
}
|
|
}
|