karmabot/JetKarmaBot/ICommandRouter.cs
2019-11-16 19:45:25 +00:00

12 lines
270 B
C#

using JetKarmaBot.Commands;
namespace JetKarmaBot
{
public interface ICommandRouter
{
string GetHelpText(Locale loc);
string GetHelpTextFor(string commandname, Locale loc);
void Add(IChatCommand c);
string Prefix { get; }
}
}