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