Normal GUI

Just a normal GUI without any special functionality.
This example shows how to create one using the GuiBuilder:

val border = SimpleItem(ItemBuilder(Material.BLACK_STAINED_GLASS_PANE))
val gui = Gui.normal()
    .setStructure(
        "# # # # # # # # #",
        "# . . . . . . . #",
        "# . . . . . . . #",
        "# # # # # # # # #")
    .addIngredient('#', border)
    .build()
Item border = new SimpleItem(new ItemBuilder(Material.BLACK_STAINED_GLASS_PANE));
Gui gui = Gui.normal()
    .setStructure(
        "# # # # # # # # #",
        "# . . . . . . . #",
        "# . . . . . . . #",
        "# # # # # # # # #")
    .addIngredient('#', border)
    .build();