6 lines
167 B
C#
6 lines
167 B
C#
namespace SharpChat {
|
|
public interface ClientCommand {
|
|
bool IsMatch(ClientCommandContext ctx);
|
|
void Dispatch(ClientCommandContext ctx);
|
|
}
|
|
}
|