public async Task RunLadder(Bot bot, Race myRace, string[] args)
        {
            var commandLineArgs = new CLArgs(args);

            await RunLadder(bot, myRace, commandLineArgs.GamePort, commandLineArgs.StartPort);
        }
Exemplo n.º 2
0
        public async Task RunLadder(Bot bot, Race race, string[] args)
        {
            CLArgs clargs = new CLArgs(args);

            await RunLadder(bot, race, clargs.GamePort, clargs.StartPort);
        }
Exemplo n.º 3
0
        public async Task RunLadder(BotFactory botFactory, Race myRace, string[] args)
        {
            CLArgs clargs = new CLArgs(args);

            await RunLadder(botFactory, myRace, clargs.GamePort, clargs.StartPort);
        }
        public async Task RunLadder(AIService aiService, Race myRace, string[] args)
        {
            var commandLineArgs = new CLArgs(args);

            await RunLadder(aiService, myRace, commandLineArgs.GamePort, commandLineArgs.StartPort);
        }