예제 #1
0
 public void Execute(IrcBot bot, BotCommand botCommand)
 {
     if (this.SendDataAction != null)
     {
         this.SendDataAction(bot, botCommand);
     }
 }
예제 #2
0
 public void Execute(IrcBot bot, BotCommand botCommand)
 {
     if (this.SendDataAction != null)
     {
         this.SendDataAction(bot, botCommand);
     }
 }
예제 #3
0
        internal static void Main(string[] args)
        {
            MapInitializer.Initialize();

            using (IrcBot bot = new IrcBot(IrcConfiguration.GetConfig()))
            {
                bot.OpenConnection();
                bot.Start();
            }
        }
예제 #4
0
파일: Program.cs 프로젝트: petmat/UberBot
        internal static void Main(string[] args)
        {
            MapInitializer.Initialize();

            using (IrcBot bot = new IrcBot(IrcConfiguration.GetConfig()))
            {
                bot.OpenConnection();
                bot.Start();
            }
        }