Files
FreeSR/FreeSR.Shared/Command/ICommandCategory.cs
2024-01-27 21:06:07 +08:00

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);
}
}