Back to project page libgdx-demo-pax-britannica.
The source code is released under:
Copyright (c) 2010 Ben Abraham, Renaud B?dard, Henk Boom, Daniel Burton, Matthew Gallant Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated ...
If you think the Android project libgdx-demo-pax-britannica 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.swagner.paxbritannica; /*w w w . j a v a2 s .com*/ 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) { } @Override public void pause() { // dispose(); } @Override public void resume() { // Resources.getInstance().reInit(); } @Override public void dispose() { // Resources.getInstance().dispose(); } }