mirror of
https://github.com/macocianradu/javaGUItoolkit.git
synced 2026-03-18 13:40:04 +00:00
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
16 lines
261 B
Java
16 lines
261 B
Java
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;
|
|
}
|
|
}
|