Fertige Positions-Klasse

git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@18 72836036-5685-4462-b002-a69064685172
This commit is contained in:
Ida Massow 2011-04-30 13:20:02 +02:00
parent 96cb745488
commit a601d484a2

View file

@ -0,0 +1,23 @@
package jrummikub.model;
public class Position {
private float x;
private float y;
public void setY(float y) {
this.y = y;
}
public float getY() {
return y;
}
public void setX(float x) {
this.x = x;
}
public float getX() {
return x;
}
}