blob: f913024cd81fb9bf1d5941a96418d31428d56fdb [file] [log] [blame] [raw]
package net.lightstone.msg;
public final class EntityInteractionMessage extends Message {
private final int id, target;
private final boolean punching;
public EntityInteractionMessage(int id, int target, boolean punching) {
this.id = id;
this.target = target;
this.punching = punching;
}
public int getId() {
return id;
}
public int getTarget() {
return target;
}
public boolean isPunching() {
return punching;
}
}