Skip to content

Commit

Permalink
CHanges Related to BGT Compatibility (#151)
Browse files Browse the repository at this point in the history
* Added `bool hide_game_window();`

* Fixed return type
  • Loading branch information
literary-programmer authored Jan 2, 2025
1 parent 8e6aabe commit a122caf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions release/include/bgt_compat.nvgt
Original file line number Diff line number Diff line change
Expand Up @@ -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());
}
Expand Down

0 comments on commit a122caf

Please sign in to comment.