Back to project page nahlc-g.
The source code is released under:
Apache License
If you think the Android project nahlc-g 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.tumblr.oddlydrawn.nahlc; //from www. ja v a 2 s. co m import com.badlogic.gdx.Game; import com.tumblr.oddlydrawn.nahlc.screens.LoadingScreen; public class MyGdxGame extends Game { @Override public void create () { setScreen(new LoadingScreen(this)); } }