Ejemplo n.º 1
0
 public LlamaSocketCommandContext(DiscordSocketClient client, SocketUserMessage msg, ref FactSettings fSettings,
                                  ref List <string> llamaFacts, ref int numFacts) : base(client, msg)
 {
     _fSettings  = fSettings;
     _llamaFacts = llamaFacts;
     _numFacts   = numFacts;
 }
Ejemplo n.º 2
0
 // CommandHandler constructor
 public CommandHandler(DiscordSocketClient client, CommandService commands, ref FactSettings fSettings,
                       ref List <string> llamaFacts, ref int numFacts, ref List <string> llamaKeywords, ref List <string> llamaResponses)
 {
     _client         = client;
     _commands       = commands;
     _fSettings      = fSettings;
     _llamaFacts     = llamaFacts;
     _numFacts       = numFacts;
     _llamaKeywords  = llamaKeywords;
     _llamaResponses = llamaResponses;
 }