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

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

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

/**
 * Created by ZeppLondon on 10/15/2015.
 */
public class MoveToData extends TemporalData {
    public float startX;
    public float startY;
    public float endX;
    public float endY;

    public void setEndX(float endX) {
        this.endX = endX;
    }

    public void setEndY(float endY) {
        this.endY = endY;
    }

    @Override
    public void reset() {
        super.reset();

        startX = 0;
        startY = 0;
        endX = 0;
        endY = 0;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy