1
0
mirror of https://github.com/davpapp/PowerMiner synced 2024-11-14 21:45:14 -05:00
PowerMiner/src/CursorPoint.java

12 lines
177 B
Java
Raw Normal View History

2018-01-30 04:14:17 -05:00
public class CursorPoint {
public int x;
public int y;
public int time;
public CursorPoint(int x, int y, int time) {
this.x = x;
this.y = y;
this.time = time;
}
}