Exemple #1
0
 public CompositeProductionQueueBot(Race race, IProductionQueue nextQueue, IProductionStrategy productionStrategy) : this(new BuildOrder(), new BasicEconomyBot(race, productionStrategy))
 {
     this.economyBot.Next    = nextQueue;
     this.productionStrategy = productionStrategy;
 }
Exemple #2
0
 public CompositeProductionQueueBot(Race race, IProductionQueue nextQueue) : this(race, nextQueue, new BasicProductionStrategy(new ClosestExpansionStrategy()))
 {
 }