Back to project page bbg-gdx-project-setup.
The source code is released under:
MIT License
If you think the Android project bbg-gdx-project-setup 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.bluebananagames.gametemplate; /*w w w .j ava2 s . c om*/ import com.badlogic.gdx.ApplicationListener; import com.badlogic.gdx.Game; import com.bluebananagames.gametemplate.screen.GameScreen; public class GameTemplateGame extends Game implements ApplicationListener { @Override public void create() { setScreen(new GameScreen(this)); } @Override public void dispose() { } @Override public void render() { super.render(); } @Override public void resize(int width, int height) { } @Override public void pause() { } @Override public void resume() { } }