blob: 824d14a2b149d1e4b6a1ee739d3a9292b561358a [file] [log] [blame] [raw]
package net.lightstone.msg;
public final class EntityTeleportMessage extends Message {
private final int id, x, y, z, rotation, pitch;
public EntityTeleportMessage(int id, int x, int y, int z, int rotation, int pitch) {
this.id = id;
this.x = x;
this.y = y;
this.z = z;
this.rotation = rotation;
this.pitch = pitch;
}
public int getId() {
return id;
}
public int getX() {
return x;
}
public int getY() {
return y;
}
public int getZ() {
return z;
}
public int getRotation() {
return rotation;
}
public int getPitch() {
return pitch;
}
}