public Window(Player owner, WindowType type, String title, int offset) {
super(owner, type, title, offset);
PlayerInventory inventory = getPlayerInventory();
GridInventoryConverter main = new GridInventoryConverter(inventory.getMain(), 9, offset, MAIN_POSITION);
addInventoryConverter(main);
addInventoryConverter(new GridInventoryConverter(inventory.getQuickbar(), 9, offset + main.getGrid().getSize(), QUICKBAR_POSITION));
switch (VanillaPlugin.getInstance().getEngine().getPlatform()) {
case PROXY:
case SERVER:
background = label = null;