Back to project page NimBeat.
The source code is released under:
Apache License
If you think the Android project NimBeat 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 net.junian.NimBeat.client; // w ww . j a va2s . c o m import net.junian.NimBeat.NimBeatGame; import com.badlogic.gdx.ApplicationListener; import com.badlogic.gdx.backends.gwt.GwtApplication; import com.badlogic.gdx.backends.gwt.GwtApplicationConfiguration; public class GwtLauncher extends GwtApplication { @Override public GwtApplicationConfiguration getConfig () { GwtApplicationConfiguration cfg = new GwtApplicationConfiguration(800, 480); return cfg; } @Override public ApplicationListener getApplicationListener () { return new NimBeatGame(); } }