Back to project page LittlerIvis.
The source code is released under:
GNU General Public License
If you think the Android project LittlerIvis 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.RosalilaStudio.LittlerIves.Screens; //www .j a v a2 s . co m import com.RosalilaStudio.LittlerIves.LittlerIvis; import com.badlogic.gdx.Screen; public abstract class AbstractScreen implements Screen { protected LittlerIvis game; public AbstractScreen(LittlerIvis game) { this.game=game; } @Override public void resize(int width, int height) { } @Override public void hide() { // TODO Auto-generated method stub } @Override public void pause() { // TODO Auto-generated method stub } @Override public void resume() { // TODO Auto-generated method stub } @Override public void dispose() { // TODO Auto-generated method stub } }