Skip to content

Instantly share code, notes, and snippets.

@NeusFear
Created January 2, 2019 03:33
Show Gist options
  • Save NeusFear/ec40598bb7fc65bf6a95db012aec425a to your computer and use it in GitHub Desktop.
Save NeusFear/ec40598bb7fc65bf6a95db012aec425a to your computer and use it in GitHub Desktop.
package neusfear.theforgecore.modules.islands.helpers;
public class Coordinate {
private int x, z;
public Coordinate(int x, int z) {
this.x = x;
this.z = z;
}
public int getX(){
return x;
}
public int getZ(){
return z;
}
public void setX(int x){
this.x = x;
}
public void setZ(int z){
this.z = z;
}
public void set(int x, int z){
this.x = x;
this.z = z;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment