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
20 lines
377 B
Java
20 lines
377 B
Java
package guiTree.Helper;
|
|
|
|
public class Point4<T> {
|
|
public T a;
|
|
public T b;
|
|
public T c;
|
|
public T d;
|
|
|
|
public Point4(T a, T b, T c, T d) {
|
|
this.a = a;
|
|
this.b = b;
|
|
this.c = c;
|
|
this.d = d;
|
|
}
|
|
|
|
public boolean equals(Point4<T> point4) {
|
|
return a == point4.a && b == point4.b && c == point4.c && d == point4.d;
|
|
}
|
|
}
|