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; | |
} | |
} |