Back to project page Froggy.
The source code is released under:
GNU General Public License
If you think the Android project Froggy 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.mopgames.client; // w w w. j a v a 2 s . com import com.mopgames.Froggy.FroggyGame; 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(480, 320); cfg.width = 1080 / 3; cfg.height = 1920 / 3; return cfg; } @Override public ApplicationListener getApplicationListener () { return new FroggyGame(new ActionResolverDesktop()); } }