Android Open Source - GameWorker Animation






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   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;
    }
}




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