package core; public class Coordinates { private int xPos; private int yPos; public Coordinates(int xPos, int yPos) { this.xPos = xPos; this.yPos = yPos; } public int getxPos() { return xPos; } public int getyPos() { return yPos; } }