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