示例#1
0
 public WorldMap(ViewController viewController, GameControllerFactory gameControllerFactory, TankDatabase tankDatabase, CrewDatabase crewDatabase, CardsDatabase cardsDatabase, FlowStack flowStack)
 {
     this.viewController        = viewController;
     this.gameControllerFactory = gameControllerFactory;
     this.tankDatabase          = tankDatabase;
     this.crewDatabase          = crewDatabase;
     this.cardsDatabase         = cardsDatabase;
     this.flowStack             = flowStack;
 }
示例#2
0
 public BattleFlow(GameControllerFactory gameControllerFactory, BattleState battleState)
 {
     this.gameControllerFactory = gameControllerFactory;
     this.battleState           = battleState;
 }
示例#3
0
 public GameFlow(GameControllerFactory gameControllerFactory)
 {
     this.gameControllerFactory = gameControllerFactory;
 }