sharp-chat/SharpChat/ClientCommand.cs

6 lines
167 B
C#

namespace SharpChat {
public interface ClientCommand {
bool IsMatch(ClientCommandContext ctx);
void Dispatch(ClientCommandContext ctx);
}
}