Updated docs a bit

This commit is contained in:
Master Kwoth
2015-11-26 20:55:48 +01:00
parent fac8b1ded9
commit 24729022a6
4 changed files with 49 additions and 41 deletions

View File

@@ -0,0 +1,9 @@
//create command service
var commandService = new CommandService(new CommandServiceConfig
{
CommandChar = '~', // prefix char for commands
HelpMode = HelpMode.Public
});
//add command service
var commands = client.AddService(commandService);