Esempio n. 1
0
 public MessageHandler(Bot bot)
 {
     _bot = bot;
 }
Esempio n. 2
0
 public static Bot CreateBot(string server, int port, string nick)
 {
     var bot = new Bot(server, port, nick);
     _bots.Add(bot);
     return bot;
 }