blob: 91c4bbb70eae99589b29938931bda30936093c4c [file] [log] [blame] [raw]
package net.glowstone.msg;
import net.glowstone.inventory.ItemStack;
public final class SetWindowSlotsMessage extends Message {
private final int id;
private final ItemStack[] items;
public SetWindowSlotsMessage(int id, ItemStack[] items) {
this.id = id;
this.items = items;
}
public int getId() {
return id;
}
public ItemStack[] getItems() {
return items;
}
}