Back to project page ZorbsCity.
The source code is released under:
GNU General Public License
If you think the Android project ZorbsCity 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 jonathan.geoffroy.zorbscity; //from w ww.j a v a 2 s .c o m import jonathan.geoffroy.zorbscity.tests.simulator.SimulatorTest; import com.badlogic.gdx.Game; /** * The main class of the project: launch a View and run it * To test this project, a CityShellView is running. * @author Jonathan GEOFFROY * @version 0.1 */ public class ZorbCityGame extends Game { // private CityView view; @Override public void create() { // view = new CityShellView("test"); // view.run(); SimulatorTest tests = new SimulatorTest(); tests.run(); } }