5859606162636465
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); Dimension size = new Dimension(810, 625); frame.setSize(size); frame.setLocationRelativeTo(null); this.app = new DigiBotsApplication(frame.getContentPane(), size.width, size.height, this); }
2728293031323334353637
@Override public void start() { try { new DigiBotsApplication(this.getContentPane(), 800, 600, null); } catch (Throwable t) { t.printStackTrace(); System.exit(0); }