Add getters for pointer coordinate

This commit is contained in:
Victor 2014-01-14 23:40:33 +02:00
parent 23656f3dcc
commit ef7e708401

View File

@ -27,6 +27,14 @@ public class Pointer {
}
}
public float getX() {
return x;
}
public float getY() {
return y;
}
public void setScreenParameters(float width, float height) {
screenWidth = width;
screenHeight = height;