com.uwsoft.editor.renderer.data.FrameRange Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of overlap2d-runtime-libgdx Show documentation
Show all versions of overlap2d-runtime-libgdx Show documentation
overlap2d-runtime-libgdx provides functionality to load, manipulate and render scenes generated by Overlap2D.
The newest version!
package com.uwsoft.editor.renderer.data;
/**
* Created by CyberJoe on 6/18/2015.
*/
public class FrameRange {
public String name;
public int startFrame;
public int endFrame;
public FrameRange() {
}
public FrameRange(String name, int startFrame, int endFrame) {
this.name = name;
this.startFrame = startFrame;
this.endFrame = endFrame;
}
}