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:
19
src/guiTree/Helper/Point4.java
Normal file
19
src/guiTree/Helper/Point4.java
Normal file
@@ -0,0 +1,19 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user