Updated copyright.
[sixth-3d-demos.git] / src / main / java / eu / svjatoslav / sixth / e3d / examples / launcher / Applet.java
1 /*
2  * Sixth 3D engine demos. Copyright ©2012-2016, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
3  *
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.
7  */
8
9 package eu.svjatoslav.sixth.e3d.examples.launcher;
10
11 import javax.swing.*;
12
13 public class Applet extends JApplet {
14
15     private static final long serialVersionUID = 8159435871928091621L;
16     private boolean appletInitialized = false;
17
18     @Override
19     public void init() {
20         if (!appletInitialized) {
21
22             getContentPane().add(new MenuPanel());
23             appletInitialized = true;
24         }
25     }
26
27 }