WorldSystem/src/main/java/de/butzlabben/world/utils/PlanerCords.java

21 lines
265 B
Java

package de.butzlabben.world.utils;
public class PlanerCords
{
private int x;
private int y;
public PlanerCords(int x, int y) {
this.x = x;
this.y = y;
}
public int getX() {
return this.x;
}
public int getY() {
return this.y;
}
}