Back to project page things-fall-down.
The source code is released under:
MIT License
If you think the Android project things-fall-down 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.github.thingsfalldown.scene; /* w w w .j ava 2 s .com*/ import com.github.thingsfalldown.manager.SceneManager.SceneType; import com.github.thingsfalldown.template.TemplateScene; /** * GameScene is the main game screen. */ public class GameScene extends TemplateScene { /* (non-Javadoc) * @see com.github.thingsfalldown.template.TemplateScene#createScene() */ @Override public void createScene() { // TODO Auto-generated method stub } /* (non-Javadoc) * @see com.github.thingsfalldown.template.TemplateScene#onBackKeyPressed() */ @Override public void onBackKeyPressed() { // TODO Auto-generated method stub } /* (non-Javadoc) * @see com.github.thingsfalldown.template.TemplateScene#getSceneType() */ @Override public SceneType getSceneType() { return SceneType.SCENE_GAME; } /* (non-Javadoc) * @see com.github.thingsfalldown.template.TemplateScene#disposeScene() */ @Override public void disposeScene() { // TODO Auto-generated method stub } }