Android Open Source - GameWorker Background






From Project

Back to project page GameWorker.

License

The source code is released under:

Apache License

If you think the Android project GameWorker 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.al.gameengine;
/*from www .j av  a  2s. com*/
import android.graphics.Bitmap;

/**
 * The class that will represent the background of the game.
 * @author AL
 *
 */
public class Background extends Scene
{
    public Background()
    {
  super();
    }

    public Background(Bitmap image)
    {
  add(image);
    }
    
}




Java Source Code List

com.al.gameengine.Animation.java
com.al.gameengine.Background.java
com.al.gameengine.Direction.java
com.al.gameengine.GameEngine.java
com.al.gameengine.Position.java
com.al.gameengine.Scene.java
com.al.gameengine.sprite.GameView.java
com.al.gameengine.sprite.SpriteManager.java
com.al.gameengine.sprite.Sprite.java
com.al.gameworker.MainActivity.java