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