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

devutility.internal.models.Position Maven / Gradle / Ivy

There is a newer version: 1.3.8.1
Show newest version
package devutility.internal.models;

public class Position {
	private float x;
	private float y;

	public float getX() {
		return x;
	}

	public void setX(float x) {
		this.x = x;
	}

	public float getY() {
		return y;
	}

	public void setY(float y) {
		this.y = y;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy