flewkey
/
mc.2a03.party
Archived
1
0
Fork 0
This repository has been archived on 2020-06-15. You can view files and clone it, but cannot push or open issues or pull requests.
mc.2a03.party/src/party/_2a03/server/PlayerPosition.java

17 lines
340 B
Java

package party._2a03.server;
public class PlayerPosition {
public double x;
public double y;
public double z;
public float yaw;
public float pitch;
public PlayerPosition(double p_x, double p_y, double p_z, float p_yaw, float p_pitch) {
this.x = p_x;
this.y = p_y;
this.z = p_z;
this.yaw = p_yaw;
this.pitch = p_pitch;
}
}