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