Back to project page acceptableLosses.
The source code is released under:
MIT License
If you think the Android project acceptableLosses 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 acceptableLosses; /*w w w . j a v a 2s. com*/ import acceptableLosses.assets.AssetLoader; import acceptableLosses.screens.SplashScreen; import com.badlogic.gdx.Game; public class AcceptableLossesGame extends Game { @Override public void create() { // Load assets. Tiles, configs, whatever AssetLoader.init(); // Open a splash screen this.setScreen(new SplashScreen(this)); } }