mirror of
https://github.com/macocianradu/javaGUItoolkit.git
synced 2026-03-18 21:50:04 +00:00
added sliders
reworked painting added animations reworked point2 added point3 point4 made tag inner class in Debugger added fps animation parsing debuggers made new thread for painting at 60fps
This commit is contained in:
15
src/guiTree/Helper/Point2.java
Normal file
15
src/guiTree/Helper/Point2.java
Normal file
@@ -0,0 +1,15 @@
|
||||
package guiTree.Helper;
|
||||
|
||||
public class Point2<T> {
|
||||
public T x;
|
||||
public T y;
|
||||
|
||||
public Point2(T x, T y) {
|
||||
this.x = x;
|
||||
this.y = y;
|
||||
}
|
||||
|
||||
public boolean equals(Point2<T> point2) {
|
||||
return x == point2.y && y == point2.y;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user