Back to project page Infinite.
The source code is released under:
GNU General Public License
If you think the Android project Infinite 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.detel.infinite; /* w ww .j a v a2s . c o m*/ import com.badlogic.gdx.Game; import com.badlogic.gdx.Screen; import com.detel.infinite.screens.ScreenGame; import com.detel.infinite.screens.ScreenMainMenu; public class Infinite extends Game { @Override public void create() { setScreen(new ScreenMainMenu(this)); } }