package com.captainbern.minecraft.game; public class Position { private int x; private int y; private int z; public Position() {} public Position(int x, int y, int z) { this.x = x; this.y = y; this.z = z; } public int getX() { return this.x; } public void setX(int x) { this.x = x; } public int getY() { return this.y; } public void setY(int y) { this.y = y; } public int getZ() { return this.z; } public void setZ(int z) { this.z = z; } }