blob: ee6f2377cd16c249d39e0426929384d8303dc26e [file] [log] [blame] [raw]
package net.glowstone.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;
}
}