Esempio n. 1
0
 public void botSetup(IrcClient bot)
 {
     this.bot = bot;
     botChatActivity.setupBot(bot);
 }
 // Empty constructor makes instance of Thread
 public PingSender(IrcClient ircClient)
 {
     this.ircClient   = ircClient;
     pingSenderThread = new Thread(new ThreadStart(this.Run));
 }