blob: f411042ce79232023351c087311daf6e7d032612 [file] [log] [blame] [raw]
package net.lightstone.msg;
public final class EntityRotationMessage extends Message {
private final int id, rotation, pitch;
public EntityRotationMessage(int id, int rotation, int pitch) {
this.id = id;
this.rotation = rotation;
this.pitch = pitch;
}
public int getId() {
return id;
}
public int getRotation() {
return rotation;
}
public int getPitch() {
return pitch;
}
}