mirror of
https://github.com/macocianradu/javaGUItoolkit.git
synced 2026-03-19 06:00:04 +00:00
added key events,
moved create thread in window constructor, added point2 hashcode added gridpanel without merge
This commit is contained in:
@@ -2,7 +2,7 @@ package guiTree.Helper;
|
||||
|
||||
public class Debugger {
|
||||
public enum Tag {
|
||||
LISTENER(false),
|
||||
LISTENER(true),
|
||||
PAINTING(false),
|
||||
FPS(true),
|
||||
ANIMATIONS(false),
|
||||
|
||||
@@ -17,4 +17,9 @@ public class Point2<T> {
|
||||
public String toString() {
|
||||
return "Point2 x:" + x + " y: " + y;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
return (x.toString() + ", " + y.toString()).hashCode();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user