Resource icon

MenuAPI 0.1 beta

Ragnok123

Member
Ragnok123 submitted a new resource:

MenuAPI - Easy menu api

PLANS:
FORMS MENU (NOT FINISHED)



To create new inventory menu, you should do this:

Code:
InventoryMenu menu = new InventoryMenu();
Every menu has a category. It is made to avoid bilion times changing menu content;
To create new category, you can simply do this:

Code:
InventoryCategory category = new InventoryCategory();
You can add items to your category:
Code:
java
category.addElement(int position, ItemData data);...
Read more about this resource...
 
Top