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