Back to project page Tetris-Evolution.
The source code is released under:
GNU General Public License
If you think the Android project Tetris-Evolution 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.mygdx.main; //from w w w . j a v a 2s . c om import com.badlogic.gdx.Game; import com.mygdx.states.Splash; public class TetrisEvolution extends Game { @Override public void create() { setScreen(new Splash()); } }