Example #1
0
 public XleRenderer(
     ICommandList commands,
     IXleImages images,
     IPlayerAnimator playerAnimator,
     IXleScreen screen,
     IRectangleRenderer rects,
     IStatsDisplay statsDisplay)
 {
     this.commands       = commands;
     this.images         = images;
     this.Screen         = screen;
     this.rects          = rects;
     this.playerAnimator = playerAnimator;
     this.statsDisplay   = statsDisplay;
 }
Example #2
0
 public MapChanger(
     GameState gameState,
     IXleScreen screen,
     IXleImages images,
     ITextArea textArea,
     ICommandList commands,
     IMapLoader mapLoader,
     IMuseumCoinSale museumCoinSale)
 {
     this.gameState      = gameState;
     this.screen         = screen;
     this.images         = images;
     this.textArea       = textArea;
     this.commands       = commands;
     this.mapLoader      = mapLoader;
     this.museumCoinSale = museumCoinSale;
 }