mirror of
https://github.com/macocianradu/javaGUItoolkit.git
synced 2026-03-19 06:00:04 +00:00
most of mouse listeners, added title bar and title bar listeners with maximize and drag reposition
This commit is contained in:
11
src/guiTree/Helper/Point2d.java
Normal file
11
src/guiTree/Helper/Point2d.java
Normal file
@@ -0,0 +1,11 @@
|
||||
package guiTree.Helper;
|
||||
|
||||
public class Point2d {
|
||||
public int x;
|
||||
public int y;
|
||||
|
||||
public Point2d(int x,int y) {
|
||||
this.x = x;
|
||||
this.y = y;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user