blob: 9562be8a9bfc933d36024a80461feac7ee9df614 [file] [log] [blame] [raw]
package net.lightstone.model;
public final class Position {
public static final Position ZERO = new Position(0, 0, 0);
private final double x, y, z;
public Position(double x, double y, double z) {
this.x = x;
this.y = y;
this.z = z;
}
public double getX() {
return x;
}
public double getY() {
return y;
}
public double getZ() {
return z;
}
}