use of ecgberht.BehaviourTrees.BuildingLot.ChooseBuildingLot in project Ecgberht by Jabbo16.
the class Ecgberht method initBuildingLotTree.
private void initBuildingLotTree() {
CheckBuildingsLot chBL = new CheckBuildingsLot("Check Buildings Lot", gs);
ChooseBlotWorker cBW = new ChooseBlotWorker("Choose Building Lot worker", gs);
ChooseBuildingLot cBLot = new ChooseBuildingLot("Choose Building Lot building", gs);
FinishBuilding fB = new FinishBuilding("Finish Building", gs);
Sequence BLot = new Sequence("Building Lot", chBL, cBLot, cBW, fB);
buildingLotTree = new BehavioralTree("Building Lot Tree");
buildingLotTree.addChild(BLot);
}
Aggregations