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