The SmartUI API makes your UI smart
The SmartUI API makes it possible to build GUIs or inventories in a very simple and straightforward way.
It also greatly simplifies creating and adding ItemStacks and inventories, making the workflow simpler and easier than ever before.
With the API, existing Bukkit ItemStacks can also be converted to SmartItems and backwards, so that later use of the API does not cause any after-effects or side effects.

![]()


SmartItem item = new SmartItem().name("An Item").type(Material.CAKE);
SmartInventory inventory = new SmartInventory();
inventory.place(12, item);
That's all there is to it! Incredibly fast and easy!