use of com.github.stefvanschie.inventoryframework.pane.PatternPane in project EmployMe by DavidTheExplorer.
the class InventoryFrameworkUtils method createWalls.
public static Pane createWalls(ChestGui gui, Priority priority) {
PatternPane background = new PatternPane(0, 0, 9, 6, createWallsPattern(gui));
background.bindItem('W', new GuiItem(createWall(Material.BLACK_STAINED_GLASS_PANE)));
return background;
}
Aggregations