diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2017-12-22 14:19:13 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2017-12-22 14:19:13 +1000 |
commit | fa5de3584ce7bc97ce6f32b31f6062b5b6e89e75 (patch) | |
tree | f0dade1481aa02fd0ac4fcf8a672cc7a761a0547 /src/Java/gtPlusPlus/core/util | |
parent | cf044120cad3ff1aa2fd40b4ae8989f7e898546e (diff) | |
download | GT5-Unofficial-fa5de3584ce7bc97ce6f32b31f6062b5b6e89e75.tar.gz GT5-Unofficial-fa5de3584ce7bc97ce6f32b31f6062b5b6e89e75.tar.bz2 GT5-Unofficial-fa5de3584ce7bc97ce6f32b31f6062b5b6e89e75.zip |
+ More additions for new dimension content, mostly ores.
Diffstat (limited to 'src/Java/gtPlusPlus/core/util')
-rw-r--r-- | src/Java/gtPlusPlus/core/util/array/Quad.java | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/core/util/array/Quad.java b/src/Java/gtPlusPlus/core/util/array/Quad.java new file mode 100644 index 0000000000..417c3b6ebc --- /dev/null +++ b/src/Java/gtPlusPlus/core/util/array/Quad.java @@ -0,0 +1,33 @@ +package gtPlusPlus.core.util.array; + +public class Quad<K,V,C,R> { + + private final K key; + private final V value; + private final C value2; + private final R value3; + + public Quad(final K key, final V value, final C value2, final R value3){ + this.key = key; + this.value = value; + this.value2 = value2; + this.value3 = value3; + } + + final public K getKey(){ + return this.key; + } + + final public V getValue_1(){ + return this.value; + } + + final public C getValue_2(){ + return this.value2; + } + + final public R getValue_3(){ + return this.value3; + } + +}
\ No newline at end of file |