예제 #1
0
파일: XY.java 프로젝트: rvganesh/Scribe4
 @Override
 public int hashCode() {
   return XY.hash(this.x, this.y);
 }
예제 #2
0
파일: XY.java 프로젝트: rvganesh/Scribe4
 public static XY at(int x, int y) {
   return map.get(XY.hash(x, y));
 }