From a122caf01496abdcd13c4502d183e996af8f65bf Mon Sep 17 00:00:00 2001 From: Hamza Ahmad <32759250+literary-programmer@users.noreply.github.com> Date: Thu, 2 Jan 2025 18:13:09 +0500 Subject: [PATCH] CHanges Related to BGT Compatibility (#151) * Added `bool hide_game_window();` * Fixed return type --- release/include/bgt_compat.nvgt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/release/include/bgt_compat.nvgt b/release/include/bgt_compat.nvgt index a438af05..8a3dd73c 100644 --- a/release/include/bgt_compat.nvgt +++ b/release/include/bgt_compat.nvgt @@ -90,6 +90,10 @@ bool show_game_window(const string& in title) { return show_window(title); } +bool hide_game_window() { + return hide_window(); +} + bool is_game_window_active() { return (is_window_active()); }