Back to project page Infinite.
The source code is released under:
GNU General Public License
If you think the Android project Infinite 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.detel.infinite.screens; /*from www. ja va 2 s . co m*/ import com.badlogic.gdx.Screen; /** * Created by Derick on 2/21/14. */ public abstract class ScreenBase implements Screen { @Override public void render(float v) { } @Override public void resize(int i, int i2) { } @Override public void show() { } @Override public void hide() { } @Override public void pause() { } @Override public void resume() { } @Override public void dispose() { } }