public async Task RunLadder(Bot bot, Race myRace, string[] args) { var commandLineArgs = new CLArgs(args); await RunLadder(bot, myRace, commandLineArgs.GamePort, commandLineArgs.StartPort); }
public async Task RunLadder(Bot bot, Race race, string[] args) { CLArgs clargs = new CLArgs(args); await RunLadder(bot, race, clargs.GamePort, clargs.StartPort); }
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); }