Android Open Source - things-fall-down Game Scene






From Project

Back to project page things-fall-down.

License

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.

Java Source Code

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

  }

}




Java Source Code List

com.github.thingsfalldown.ThingsFallDownActivity.java
com.github.thingsfalldown.manager.ResourceManager.java
com.github.thingsfalldown.manager.SceneManager.java
com.github.thingsfalldown.scene.GameScene.java
com.github.thingsfalldown.scene.LoadingScene.java
com.github.thingsfalldown.scene.LogoScene.java
com.github.thingsfalldown.scene.MainMenuScene.java
com.github.thingsfalldown.template.TemplateScene.java