blob: 7c7f326db8c81940c9ae5bf770d00f8daf031bf8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package org.openslx.imagemaster.util;
public class Tuple<X, Y> {
public final X x;
public final Y y;
public Tuple(X x, Y y) {
this.x = x;
this.y = y;
}
public X getX() {
return x;
}
}
|