blob: 11262934db68c5e8c95ff71a5d29073bcbacd8ff [file] [log] [blame] [raw]
package net.lightstone.msg;
public final class OpenWindowMessage extends Message {
private final int id, type, slots;
private final String title;
public OpenWindowMessage(int id, int type, String title, int slots) {
this.id = id;
this.type = type;
this.title = title;
this.slots = slots;
}
public int getId() {
return id;
}
public int getType() {
return type;
}
public int getSlots() {
return slots;
}
public String getTitle() {
return title;
}
}