Add borderless window on Windows platform and add easy function in Screen class to change window mode.

This commit is contained in:
2023-08-14 18:11:05 -05:00
parent 09be2375f6
commit cfd11a7e77
5 changed files with 112 additions and 0 deletions
+9
View File
@@ -445,6 +445,15 @@ public:
{
}
/// <summary>
/// Sets the window to be borderless or not and to be fullscreen.
/// </summary>
/// <param name="isBorderless">Whether or not to have borders on window.</param>
/// <param name="fullscreen">Whether or not to make the borderless window fullscreen.</param>
API_FUNCTION() virtual void SetBorderless(bool isBorderless, bool fullscreen)
{
}
/// <summary>
/// Restores the window state before minimizing or maximizing.
/// </summary>