6 lines
161 B
C#
6 lines
161 B
C#
namespace SharpChat {
|
|
public interface ChatCommand {
|
|
bool IsMatch(ChatCommandContext ctx);
|
|
void Dispatch(ChatCommandContext ctx);
|
|
}
|
|
}
|