Esempio n. 1
0
 public GameView(SpriteBatch spriteBatch, Camera camera, GameModel model)
 {
     this.spriteBatch = spriteBatch;
     this.camera = camera;
     this.gModel = model;
     bgView = new BackgroundView(camera.getScaleXY());
 }
Esempio n. 2
0
 private void InitateGame()
 {
     this.gameModel = new GameModel(content);
     this.gameView = new GameView(spriteBatch, camera, gameModel);
     LoadContent();
 }