package de.lmu.tcs; /** * Model * * Immutable * * Created by jost on 24.11.15. */ public class Position { private final int x; private final int y; public Position(int x, int y) { this.x = x; this.y = y; } public int getX() { return this.x; } public int getY() { return this.y; } }