teleports

This commit is contained in:
Yazawazi
2022-04-21 04:45:38 +08:00
committed by GitHub
parent 19572f46e3
commit 6f43c0765f
8 changed files with 201 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
package emu.grasscutter.data.common;
public class PointData {
private pos tranPos;
public pos getTranPos() {
return tranPos;
}
public void setTranPos(pos tranPos) {
this.tranPos = tranPos;
}
public class pos {
private float x;
private float y;
private float z;
public float getX() {
return x;
}
public void setX(float x) {
this.x = x;
}
public float getY() {
return y;
}
public void setY(float y) {
this.y = y;
}
public float getZ() {
return z;
}
public void setZ(float z) {
this.z = z;
}
}
}