From 5cb4c6e24033cf337812390d99a6817d24d21eab Mon Sep 17 00:00:00 2001 From: Foghrye4 Date: Sun, 12 Feb 2017 20:43:03 +0300 Subject: Removed explosion radius limitations. Explosion calculation optimized (reduced memory usage). One more detonator and explosive pack recipe. GT6 recipes for both chemical reactors and cryogenic distiller. Max stack size of muffle furnace is limited to 32. A lot of old features are removed. --- ihl/handpump/XYZ.java | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 ihl/handpump/XYZ.java (limited to 'ihl/handpump/XYZ.java') diff --git a/ihl/handpump/XYZ.java b/ihl/handpump/XYZ.java new file mode 100644 index 0000000..9a2627e --- /dev/null +++ b/ihl/handpump/XYZ.java @@ -0,0 +1,26 @@ +package ihl.handpump; + +public class XYZ { + public int x; + public int y; + public int z; + + public XYZ(int x1,int y1,int z1) + { + this.x=x1; + this.y=y1; + this.z=z1; + } + + @Override + public boolean equals(Object obj) + { + if(obj instanceof XYZ) + { + XYZ xyz2 = (XYZ) obj; + return (this.x==xyz2.x && this.y==xyz2.y && this.z==xyz2.z); + } + return false; + } + +} -- cgit v1.2.3