Back to project page mgcube.
The source code is released under:
qp is licensed under the Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported http://creativecommons.org/licenses/by-nc-nd/3.0/ Your are not allowed to publish this game under your name.
If you think the Android project mgcube 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 de.redlion.qb; // w ww.j a va2 s .c o m import com.badlogic.gdx.Game; import com.badlogic.gdx.Screen; public abstract class DefaultScreen implements Screen { protected Game game; public DefaultScreen(Game game) { this.game = game; } @Override public void resize(int width, int height) { Resources.getInstance().initShader(); } @Override public void pause() { } @Override public void resume() { } @Override public void dispose() { Resources.getInstance().dispose(); } }