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

games.rednblack.editor.renderer.systems.action.data.AlphaData Maven / Gradle / Ivy

package games.rednblack.editor.renderer.systems.action.data;

/**
 * Created by ZeppLondon on 10/29/15.
 */
public class AlphaData extends TemporalData {
    public float start, end;

    public void setEnd(float end) {
        this.end = end;
    }

    @Override
    public void reset() {
        super.reset();
        start = 0;
        end = 0;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy