Create visible parameter in GUI

This commit is contained in:
2021-03-19 21:04:27 +01:00
parent 1191c6cdc3
commit c28b9f3d00
2 changed files with 34 additions and 0 deletions

View File

@@ -26,6 +26,14 @@ public interface GUI extends Renderable, Disposable, KeyEventHandler {
Window inflateWindow(String widgetUid);
boolean isVisible();
void setVisible(boolean visible);
void show();
void hide();
Widget getRoot();
void setRoot(Widget root);