2015-07-16 16:16:16 +02:00

36 lines
794 B
Java

package com.intellectualcrafters.plot.object;
public class PlotLoc {
public int x;
public int z;
public PlotLoc(final int x, final int z) {
this.x = x;
this.z = z;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = (prime * result) + this.x;
result = (prime * result) + this.z;
return result;
}
@Override
public boolean equals(final Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
final PlotLoc other = (PlotLoc) obj;
return ((this.x == other.x) && (this.z == other.z));
}
}