Added clickEvent to Board

git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@30 72836036-5685-4462-b002-a69064685172
This commit is contained in:
Matthias Schiffer 2011-04-30 17:56:10 +02:00
parent 5440eaba77
commit 36da8c8a17
5 changed files with 74 additions and 0 deletions

View file

@ -21,5 +21,10 @@ public class Position {
public float getY() {
return y;
}
@Override
public String toString(){
return "Position[x="+x+",y="+y+"]";
}
}