sharp-chat/SharpChat/ChatCommand.cs

6 lines
161 B
C#

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