fixed download link
[sixth-3d-demos.git] / src / main / java / eu / svjatoslav / sixth / e3d / examples / launcher / Applet.java
1 /*
2  * Sixth - System for data storage, computation, exploration and interaction.
3  * Copyright ©2012-2016, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
4  * 
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of version 3 of the GNU Lesser General Public License
7  * or later as published by the Free Software Foundation.
8  */
9
10 package eu.svjatoslav.sixth.e3d.examples.launcher;
11
12 import javax.swing.*;
13
14 public class Applet extends JApplet {
15
16     private static final long serialVersionUID = 8159435871928091621L;
17     private boolean appletInitialized = false;
18
19     @Override
20     public void init() {
21         if (!appletInitialized) {
22
23             getContentPane().add(new MenuPanel());
24             appletInitialized = true;
25         }
26     }
27
28 }