blob: fdb8321399eab7237ac30c6882616e7ba1f159bf [file] [log] [blame] [raw]
package net.lightstone.msg;
public 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;
}
}