X-Git-Url: http://www2.svjatoslav.eu/gitweb/?p=sixth-3d-demos.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Feu%2Fsvjatoslav%2Fsixth%2Fe3d%2Fexamples%2Flauncher%2FApplet.java;fp=src%2Fmain%2Fjava%2Feu%2Fsvjatoslav%2Fsixth%2Fe3d%2Fexamples%2Flauncher%2FApplet.java;h=0000000000000000000000000000000000000000;hp=62e8ef8c930d07f9478ef6ecfd70839088dc2748;hb=27447b81332690e484ba126be3b9825a296a746b;hpb=ee85b7fbac8b2f5e329b7fa590a0dcf7691a1084 diff --git a/src/main/java/eu/svjatoslav/sixth/e3d/examples/launcher/Applet.java b/src/main/java/eu/svjatoslav/sixth/e3d/examples/launcher/Applet.java deleted file mode 100644 index 62e8ef8..0000000 --- a/src/main/java/eu/svjatoslav/sixth/e3d/examples/launcher/Applet.java +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Sixth 3D engine demos. Copyright ©2012-2016, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of version 3 of the GNU Lesser General Public License - * or later as published by the Free Software Foundation. - */ - -package eu.svjatoslav.sixth.e3d.examples.launcher; - -import javax.swing.*; - -public class Applet extends JApplet { - - private static final long serialVersionUID = 8159435871928091621L; - private boolean appletInitialized = false; - - @Override - public void init() { - if (!appletInitialized) { - - getContentPane().add(new MenuPanel()); - appletInitialized = true; - } - } - -}