Back to project page squares.
The source code is released under:
GNU General Public License
If you think the Android project squares 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.mygdxgame; //w w w. j a v a 2 s .c om import com.badlogic.gdx.Game; import com.mygdxgame.screens.GameScreen; import com.mygdxgame.screens.MenuScreen; import com.mygdxgame.screens.ScoreScreen; import com.mygdxgame.screens.StatsScreen; public class MyGdxGame extends Game{ public MenuScreen menuScreen; public GameScreen gameScreen; public ScoreScreen scoreScreen; public StatsScreen statsScreen; @Override public void create() { menuScreen = new MenuScreen(this); gameScreen = new GameScreen(this); scoreScreen = new ScoreScreen(this); statsScreen = new StatsScreen(this); setScreen(menuScreen); } }