<configuration>
<archive>
<manifest>
- <mainClass>eu.svjatoslav.sixth.Main</mainClass>
+ <mainClass>eu.svjatoslav.sixth.e3d.examples.launcher.Main</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
- <finalName>sixth</finalName>
+ <finalName>sixth-3d-demos</finalName>
<appendAssemblyId>false</appendAssemblyId>
</configuration>
</descriptorRefs>
<archive>
<manifest>
- <mainClass>eu.svjatoslav.sixth.Main</mainClass>
+ <mainClass>eu.svjatoslav.sixth.e3d.examples.launcher.Main</mainClass>
</manifest>
</archive>
</configuration>
<?xml version="1.0" encoding="UTF-8"?>
<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">
- <component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_8" inherit-compiler-output="false">
+ <component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_8">
<output url="file://$MODULE_DIR$/target/classes" />
<output-test url="file://$MODULE_DIR$/target/test-classes" />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src/main/resources" type="java-resource" />
- <sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" />
<excludeFolder url="file://$MODULE_DIR$/target" />
</content>
<orderEntry type="inheritedJdk" />
+++ /dev/null
-/*
- * 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;
- }
- }
-
-}
--- /dev/null
+/*
+ * 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;
+
+/**
+ * Main class to launch main menu with examples.
+ */
+
+class Main {
+
+ public static void main(final String[] args) {
+ LauncherFrame.main(args);
+ }
+
+}
+++ /dev/null
-/*
- * 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;
-
-/**
- * Main class to launch main menu with examples.
- */
-
-class Standalone {
-
- public static void main(final String[] args) {
- LauncherFrame.main(args);
- }
-
-}