Ejemplo n.º 1
0
 public StatsCommand(IcqBotContext context)
 {
     this.context = context;
 }
Ejemplo n.º 2
0
 public TopCommand(IcqBotContext context)
 {
     this.context = context;
 }
Ejemplo n.º 3
0
 public IcqBotRunner(IBotRunnerOptions botRunnerOptions, IEnumerable <ICommand> commands, ILogger log, IcqBotContext context) : base(botRunnerOptions, commands, log)
 {
     this.context = context;
 }
Ejemplo n.º 4
0
 public RollDiceCommand(IcqBotContext context)
 {
     random       = new Random();
     this.context = context;
 }
Ejemplo n.º 5
0
 public UpdateIcqCommand(IcqBotContext context, ILogger log)
 {
     random       = new Random();
     this.context = context;
     this.log     = log;
 }