blob: 89a1950470ecdd5559e3c71a27891c7dbaf01e79 [file] [log] [blame] [raw]
package net.lightstone.msg;
public final class EntityActionMessage extends Message {
private final int id, action;
public EntityActionMessage(int id, int action) {
this.id = id;
this.action = action;
}
public int getId() {
return id;
}
public int getAction() {
return action;
}
}