Back to project page nahwc-g.
The source code is released under:
Apache License
If you think the Android project nahwc-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.stupidworm; //from ww w. j a va 2 s. c o m import com.badlogic.gdx.Game; import com.tumblr.oddlydrawn.stupidworm.screens.MainMenuScreen; public class MyGdxGame extends Game { @Override public void create () { setScreen(new MainMenuScreen(this)); } }