mirror of
https://github.com/davpapp/PowerMiner
synced 2024-11-14 21:45:14 -05:00
12 lines
177 B
Java
12 lines
177 B
Java
|
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;
|
||
|
}
|
||
|
}
|