├── README.MD ├── img ├── StackPanel.png ├── button.png ├── image.png ├── img.png ├── label.png ├── logo.png ├── panel.png └── wiki.png ├── resources └── pack_example │ ├── manifest.json │ └── ui │ ├── _ui_defs.json │ ├── custom_ui │ └── ui_test.json │ └── server_form.json ├── src └── refaltor │ ├── roots │ └── LabelTest.php │ └── ui │ ├── Entry.php │ ├── builders │ ├── Root.php │ └── RootBuild.php │ ├── colors │ └── BasicColor.php │ ├── elements │ ├── Button.php │ ├── Element.php │ ├── Grid.php │ ├── Image.php │ ├── Label.php │ ├── Panel.php │ ├── StackPanel.php │ └── utils │ │ ├── CloseButton.php │ │ └── PlayerRender.php │ └── helpers │ ├── OrientationHelper.php │ └── RegisterHelper.php ├── start.cmd └── start.php /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldRush-developpement/EasyUIBuilder/HEAD/README.MD -------------------------------------------------------------------------------- /img/StackPanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldRush-developpement/EasyUIBuilder/HEAD/img/StackPanel.png -------------------------------------------------------------------------------- /img/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldRush-developpement/EasyUIBuilder/HEAD/img/button.png -------------------------------------------------------------------------------- /img/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldRush-developpement/EasyUIBuilder/HEAD/img/image.png -------------------------------------------------------------------------------- /img/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldRush-developpement/EasyUIBuilder/HEAD/img/img.png -------------------------------------------------------------------------------- /img/label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldRush-developpement/EasyUIBuilder/HEAD/img/label.png -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldRush-developpement/EasyUIBuilder/HEAD/img/logo.png -------------------------------------------------------------------------------- /img/panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldRush-developpement/EasyUIBuilder/HEAD/img/panel.png -------------------------------------------------------------------------------- /img/wiki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldRush-developpement/EasyUIBuilder/HEAD/img/wiki.png -------------------------------------------------------------------------------- /resources/pack_example/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldRush-developpement/EasyUIBuilder/HEAD/resources/pack_example/manifest.json -------------------------------------------------------------------------------- /resources/pack_example/ui/_ui_defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldRush-developpement/EasyUIBuilder/HEAD/resources/pack_example/ui/_ui_defs.json -------------------------------------------------------------------------------- /resources/pack_example/ui/custom_ui/ui_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldRush-developpement/EasyUIBuilder/HEAD/resources/pack_example/ui/custom_ui/ui_test.json -------------------------------------------------------------------------------- /resources/pack_example/ui/server_form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldRush-developpement/EasyUIBuilder/HEAD/resources/pack_example/ui/server_form.json -------------------------------------------------------------------------------- /src/refaltor/roots/LabelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldRush-developpement/EasyUIBuilder/HEAD/src/refaltor/roots/LabelTest.php -------------------------------------------------------------------------------- /src/refaltor/ui/Entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldRush-developpement/EasyUIBuilder/HEAD/src/refaltor/ui/Entry.php -------------------------------------------------------------------------------- /src/refaltor/ui/builders/Root.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldRush-developpement/EasyUIBuilder/HEAD/src/refaltor/ui/builders/Root.php -------------------------------------------------------------------------------- /src/refaltor/ui/builders/RootBuild.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldRush-developpement/EasyUIBuilder/HEAD/src/refaltor/ui/builders/RootBuild.php -------------------------------------------------------------------------------- /src/refaltor/ui/colors/BasicColor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldRush-developpement/EasyUIBuilder/HEAD/src/refaltor/ui/colors/BasicColor.php -------------------------------------------------------------------------------- /src/refaltor/ui/elements/Button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldRush-developpement/EasyUIBuilder/HEAD/src/refaltor/ui/elements/Button.php -------------------------------------------------------------------------------- /src/refaltor/ui/elements/Element.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldRush-developpement/EasyUIBuilder/HEAD/src/refaltor/ui/elements/Element.php -------------------------------------------------------------------------------- /src/refaltor/ui/elements/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldRush-developpement/EasyUIBuilder/HEAD/src/refaltor/ui/elements/Grid.php -------------------------------------------------------------------------------- /src/refaltor/ui/elements/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldRush-developpement/EasyUIBuilder/HEAD/src/refaltor/ui/elements/Image.php -------------------------------------------------------------------------------- /src/refaltor/ui/elements/Label.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldRush-developpement/EasyUIBuilder/HEAD/src/refaltor/ui/elements/Label.php -------------------------------------------------------------------------------- /src/refaltor/ui/elements/Panel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldRush-developpement/EasyUIBuilder/HEAD/src/refaltor/ui/elements/Panel.php -------------------------------------------------------------------------------- /src/refaltor/ui/elements/StackPanel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldRush-developpement/EasyUIBuilder/HEAD/src/refaltor/ui/elements/StackPanel.php -------------------------------------------------------------------------------- /src/refaltor/ui/elements/utils/CloseButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldRush-developpement/EasyUIBuilder/HEAD/src/refaltor/ui/elements/utils/CloseButton.php -------------------------------------------------------------------------------- /src/refaltor/ui/elements/utils/PlayerRender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldRush-developpement/EasyUIBuilder/HEAD/src/refaltor/ui/elements/utils/PlayerRender.php -------------------------------------------------------------------------------- /src/refaltor/ui/helpers/OrientationHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldRush-developpement/EasyUIBuilder/HEAD/src/refaltor/ui/helpers/OrientationHelper.php -------------------------------------------------------------------------------- /src/refaltor/ui/helpers/RegisterHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldRush-developpement/EasyUIBuilder/HEAD/src/refaltor/ui/helpers/RegisterHelper.php -------------------------------------------------------------------------------- /start.cmd: -------------------------------------------------------------------------------- 1 | php start.php -------------------------------------------------------------------------------- /start.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoldRush-developpement/EasyUIBuilder/HEAD/start.php --------------------------------------------------------------------------------