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 w ww. j a v a 2s. c om import java.util.LinkedList; import android.graphics.Bitmap; public class Animation { LinkedList<Bitmap> animationImages; int delay; public Animation() { animationImages = new LinkedList<Bitmap>(); delay = 2; } public void playAnimation() { } public void addImage(Bitmap img) { } public void setDelay(int delay) { this.delay = delay; } }