Back to project page CatchDROP.
The source code is released under:
GNU General Public License
If you think the Android project CatchDROP 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 projects.nerdybuzz.catchdrop.desktop; /*w w w . j av a2 s.c o m*/ import projects.nerdybuzz.catchdrop.CDGame; import projects.nerdybuzz.catchdrop.googleservices.DesktopGoogleServices; import com.badlogic.gdx.backends.lwjgl.LwjglApplet; import com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration; public class AppletLauncher extends LwjglApplet { private static final long serialVersionUID = 1L; static LwjglApplicationConfiguration config = new LwjglApplicationConfiguration() { { width = 800; height = 480; } }; public AppletLauncher() { super(new CDGame(new DesktopGoogleServices(), "Click"), config); } public static void main(String[] args) { new AppletLauncher(); } }