Exemplo n.º 1
0
 public BTD6Menu(WindowInteractions winInteractions)
 {
     _winInteractions = winInteractions;
     _btd6GamePlayer  = new BTD6GamePlayer(winInteractions);
     LoadScripts(_scriptLoader);
     _moneyReader = new MoneyReader(1920, 1080);
 }
Exemplo n.º 2
0
 public void ProcessInput(WindowInteractions interactionsIn)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 3
0
 public BTD6GamePlayer(WindowInteractions interactor)
 {
     _gameWindow = interactor;
 }
Exemplo n.º 4
0
 public GameMenu(WindowInteractions winInteractions)
 {
     _availableGames = new Dictionary <string, IGameMenu>();
     _availableGames.Add("1", new BTD6Menu(winInteractions));
     _availableGames.Add("2", new NertsMenu(winInteractions));
 }