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.me.mygdxgame; //from www .j av a 2s.c o m import com.badlogic.gdx.backends.lwjgl.LwjglApplication; import com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration; import com.mygdxgame.MyGdxGame; public class Main { public static void main(String[] args) { LwjglApplicationConfiguration cfg = new LwjglApplicationConfiguration(); cfg.title = "squares_game"; cfg.useGL20 = false; cfg.width = 480; cfg.height = 800; new LwjglApplication(new MyGdxGame(), cfg); } }