Android Open Source - squares My Gdx Game






From Project

Back to project page squares.

License

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.

Java Source Code

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);
  }

}




Java Source Code List

com.me.mygdxgame.Main.java
com.me.squaresgame.MainActivity.java
com.mygdxgame.MyGdxGame.java
com.mygdxgame.controller.WorldController.java
com.mygdxgame.model.Block.java
com.mygdxgame.model.Entity.java
com.mygdxgame.model.World.java
com.mygdxgame.screens.GameScreen.java
com.mygdxgame.screens.MenuScreen.java
com.mygdxgame.screens.ScoreScreen.java
com.mygdxgame.screens.StatsScreen.java
com.mygdxgame.view.WorldRenderer.java