2 * Sixth 3D engine demos. Copyright ©2012-2018, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of version 3 of the GNU Lesser General Public License
6 * or later as published by the Free Software Foundation.
9 package eu.svjatoslav.sixth.e3d.examples.launcher;
14 class Main extends javax.swing.JFrame {
16 private static final long serialVersionUID = -3679656169594556137L;
23 public static void main(final String[] args) {
24 SwingUtilities.invokeLater(() -> {
25 final Main inst = new Main();
26 final BorderLayout instLayout = new BorderLayout();
27 inst.setLocationRelativeTo(null);
28 inst.setVisible(true);
29 inst.getContentPane().setLayout(instLayout);
33 private void initGUI() {
34 getContentPane().add(new MenuPanel());