Possibility to build executable jar files. Removed applet support.
[sixth-3d-demos.git] / src / main / java / eu / svjatoslav / sixth / e3d / examples / launcher / Applet.java
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 (file)
index 62e8ef8..0000000
+++ /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;
-        }
-    }
-
-}