sharp-chat/SharpChat/IChatCommand.cs

7 lines
162 B
C#
Raw Permalink Normal View History

namespace SharpChat {
2022-08-30 15:00:58 +00:00
public interface IChatCommand {
bool IsMatch(ChatCommandContext ctx);
void Dispatch(ChatCommandContext ctx);
2022-08-30 15:00:58 +00:00
}
}