Back to project page SpaceGame.
The source code is released under:
Copyright (c) 2012 ??ukasz Patalas Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the So...
If you think the Android project SpaceGame 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.lpatalas.spacegame; // w w w . ja va 2s . com import com.badlogic.gdx.Game; import com.badlogic.gdx.Gdx; /** * User: Lukasz * Date: 05.08.12 */ class SpaceGame extends Game { @Override public void create() { setScreen(new MainMenuScreen(this)); } }