sharp-chat/SharpChat/IChatCommand.cs
2022-08-30 17:00:58 +02:00

9 lines
189 B
C#

using SharpChat.Events;
namespace SharpChat {
public interface IChatCommand {
bool IsMatch(string name);
IChatMessage Dispatch(IChatCommandContext context);
}
}