コード例 #1
0
ファイル: BotCommandResponse.cs プロジェクト: petmat/UberBot
 public void Execute(IrcBot bot, BotCommand botCommand)
 {
     if (this.SendDataAction != null)
     {
         this.SendDataAction(bot, botCommand);
     }
 }
コード例 #2
0
ファイル: BotCommandResponse.cs プロジェクト: petmat/UberBot
 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();
            }
        }