sharp-chat/SharpChat/IChatCommand.cs

9 lines
189 B
C#
Raw Normal View History

2022-08-30 15:00:58 +00:00
using SharpChat.Events;
namespace SharpChat {
public interface IChatCommand {
bool IsMatch(string name);
IChatMessage Dispatch(IChatCommandContext context);
}
}