Archived
0

добавлен BlockLocationSerializer

This commit is contained in:
2018-09-08 17:04:58 +03:00
parent ad31a90455
commit debb75a080
3 changed files with 99 additions and 0 deletions

View File

@@ -8,6 +8,10 @@ import lombok.*;
public class BlockLocation implements Cloneable {
private int x, y, z;
public static BlockLocation ZERO() {
return new BlockLocation(0,0,0);
}
public void setXYZ(int x, int y, int z) {
this.x = x;
this.y = y;