Back to project page GameWorker.
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.
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); } }