8 lines
189 B
C#
8 lines
189 B
C#
using SharpChat.Events;
|
|
|
|
namespace SharpChat {
|
|
public interface IChatCommand {
|
|
bool IsMatch(string name);
|
|
IChatMessage Dispatch(IChatCommandContext context);
|
|
}
|
|
}
|