Back to project page pixel-art.
The source code is released under:
Apache License
If you think the Android project pixel-art 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.jaween.pixelart.io; //from w w w . j ava 2s. c o m import com.jaween.pixelart.ui.animation.Frame; import java.util.LinkedList; /** * Created by ween on 12/9/14. */ public class AnimationFile { private String filename; private LinkedList<Frame> frames; public AnimationFile(String filename, LinkedList<Frame> frames) { this.filename = filename; this.frames = frames; } public String getFilename() { return filename; } public void setFilename(String filename) { this.filename = filename; } public LinkedList<Frame> getFrames() { return frames; } public void setFrames(LinkedList<Frame> frames) { this.frames = frames; } }