Back to project page Gallery97.
The source code is released under:
GNU General Public License
If you think the Android project Gallery97 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 pl.kacprzak.klub97; /* w w w. j a va 2 s . co m*/ import com.badlogic.gdx.Screen; public class AbstractScreen implements Screen { protected MieszkanieStart game; public AbstractScreen(MieszkanieStart game) { this.game = game; } @Override public void dispose() { } @Override public void hide() { } @Override public void pause() { } @Override public void render(float arg0) { } @Override public void resize(int arg0, int arg1) { } @Override public void resume() { } @Override public void show() { } }