sharp-chat/SharpChat/ClientCommand.cs

7 lines
164 B
C#
Raw Normal View History

2025-04-26 22:28:41 +00:00
namespace SharpChat {
public interface ClientCommand {
bool IsMatch(ClientCommandContext ctx);
2025-04-26 22:28:41 +00:00
Task Dispatch(ClientCommandContext ctx);
}
}