mirror of
https://github.com/Jetsparrow/karmabot.git
synced 2026-01-21 09:06:09 +03:00
12 lines
270 B
C#
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; }
|
|
}
|
|
} |