예제 #1
0
파일: GameView.cs 프로젝트: ks222rt/1DV437
 public GameView(SpriteBatch spriteBatch, Camera camera, GameModel model)
 {
     this.spriteBatch = spriteBatch;
     this.camera = camera;
     this.gModel = model;
     bgView = new BackgroundView(camera.getScaleXY());
 }
예제 #2
0
 private void InitateGame()
 {
     this.gameModel = new GameModel(content);
     this.gameView = new GameView(spriteBatch, camera, gameModel);
     LoadContent();
 }