summaryrefslogtreecommitdiff
path: root/ihl/i_hate_liquids/XYZ.java
diff options
context:
space:
mode:
authorFoghrye4 <foghrye4@gmail.com>2016-04-11 19:44:54 +0300
committerFoghrye4 <foghrye4@gmail.com>2016-04-11 19:44:54 +0300
commit05c78126859231a68e199dc34613689bd0978e2f (patch)
tree050bea104a18c72905095d29f31bec2935a27a24 /ihl/i_hate_liquids/XYZ.java
Initial commit
Diffstat (limited to 'ihl/i_hate_liquids/XYZ.java')
-rw-r--r--ihl/i_hate_liquids/XYZ.java26
1 files changed, 26 insertions, 0 deletions
diff --git a/ihl/i_hate_liquids/XYZ.java b/ihl/i_hate_liquids/XYZ.java
new file mode 100644
index 0000000..287b11a
--- /dev/null
+++ b/ihl/i_hate_liquids/XYZ.java
@@ -0,0 +1,26 @@
+package ihl.i_hate_liquids;
+
+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;
+ }
+
+}