Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 339 Bytes

README.md

File metadata and controls

23 lines (18 loc) · 339 Bytes

UIManager

Easy to create forms for PocketMine-MP


HOW TO USE

Simple Form

$form = new SimpleForm('title', 'content');
$form->addButton(new Buttom('your text'));

Custom Form

$form = new CustomForm('title');
$form->addElement(new Label('your text'));

send to player

$player->sendForm($form);