All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.uwsoft.editor.renderer.data.FrameRange Maven / Gradle / Ivy

Go to download

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy