public CommandProcessor(string steamWebApiKey, IrcClient client)
 {
     this.steamWebApiKey = steamWebApiKey;
     this.client         = client;
 }
Exemple #2
0
 public Pinger(IrcClient client)
 {
     this.client = client;
     sender      = new Thread(new ThreadStart(Run));
 }