mirror of
https://github.com/macocianradu/javaGUItoolkit.git
synced 2026-03-18 21:50:04 +00:00
added key events,
moved create thread in window constructor, added point2 hashcode added gridpanel without merge
This commit is contained in:
@@ -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