You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
370 B

package com.example.jmacro.base;
/**
* 屏幕点
*/
public class ScreenPoint {
private int x;
private int y;
public ScreenPoint() {
}
public int getX() {
return x;
}
public void setX(int x) {
this.x = x;
}
public int getY() {
return y;
}
public void setY(int y) {
this.y = y;
}
}

Powered by TurnKey Linux.