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