QuantumGUI
Define a locked, typed menu and open it for a player.
A fast, cross-version inventory interface framework.
Open product guideMenu shop = QuantumGUI.menu() .key("credits-shop") .title("<gradient:#8B5CF6:#22D3EE>Credits Shop</gradient>") .rows(6) .policy(MenuPolicy.locked()) .item(22, GuiItem.builder() .material(MaterialKey.of("EMERALD")) .name("<green>Your Credits") .onClick(context -> context.open("credit-packages")) .build()) .build();shop.open(player);