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.Froggy; /* w w w . j a v a 2 s . c om*/ import com.badlogic.gdx.Game; import com.mopgames.Screens.SplashScreen; import com.mopgames.Helpers.ActionResolver; import com.mopgames.Helpers.AssetLoader; public class FroggyGame extends Game { public static ActionResolver actionResolver; public FroggyGame(ActionResolver actionResolver) { super(); FroggyGame.actionResolver = actionResolver; } @Override public void create() { AssetLoader.load(); setScreen(new SplashScreen(this)); } @Override public void dispose() { super.dispose(); AssetLoader.dispose(); } }