Back to project page FloppyThreeD.
The source code is released under:
MIT License
If you think the Android project FloppyThreeD listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.jtechapps.FloppyThreeD.desktop; //from www.j av a 2s .c om import com.badlogic.gdx.backends.lwjgl.LwjglApplet; import com.jtechapps.FloppyThreeD.FloppyGame; public class DesktopAdapter extends LwjglApplet{ private static final long serialVersionUID = 1L; static DesktopInterface nface = new DesktopInterface(); public DesktopAdapter() { super(new FloppyGame(nface)); } }