sharp-chat/SharpChat/IChatCommand.cs

7 lines
162 B
C#

namespace SharpChat {
public interface IChatCommand {
bool IsMatch(ChatCommandContext ctx);
void Dispatch(ChatCommandContext ctx);
}
}