Esempio n. 1
0
 public Engine(Graphics graphic, GameWindows game)
 {
     this.graphics = graphic;
     this.game     = game;
 }
Esempio n. 2
0
 public void startDraw(Graphics graphic, GameWindows game)
 {
     this.graphicEngine = new Engine(graphic, game);
     this.graphicEngine.initialize();
 }