Window: visible property to show and hide window

This commit is contained in:
Josh Tynjala
2023-03-16 08:34:58 -07:00
parent 4105b97fc8
commit 0160c12311
9 changed files with 83 additions and 0 deletions

View File

@@ -61,6 +61,7 @@ namespace lime {
virtual void SetTextInputEnabled (bool enable) = 0;
virtual void SetTextInputRect (Rectangle *rect) = 0;
virtual const char* SetTitle (const char* title) = 0;
virtual bool SetVisible (bool visible) = 0;
virtual void WarpMouse (int x, int y) = 0;
Application* currentApplication;