diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2021-08-03 19:57:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-03 19:57:29 +0200 |
commit | ebdfe259c1125991c7dd57cf2ed64a3805b20fa1 (patch) | |
tree | 9214338056aca966e0e10ce26e7697674afc6c3a /core/os/os.h | |
parent | 80fc90e82a57e8111cb7577b05bb2de021000e75 (diff) | |
parent | 09386ba9fd6abddb3b9be723ae3650c6d15bc440 (diff) |
Merge pull request #51216 from Faless/headless/switch
[Headless] Add --headless switch (no rendering, no audio).
Diffstat (limited to 'core/os/os.h')
-rw-r--r-- | core/os/os.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/core/os/os.h b/core/os/os.h index fcb195afe1..0466d94acd 100644 --- a/core/os/os.h +++ b/core/os/os.h @@ -53,7 +53,6 @@ class OS { bool _verbose_stdout = false; bool _debug_stdout = false; String _local_clipboard; - bool _no_window = false; int _exit_code = EXIT_FAILURE; // unexpected exit is marked as failure int _orientation; bool _allow_hidpi = false; @@ -269,9 +268,6 @@ public: virtual Error move_to_trash(const String &p_path) { return FAILED; } - virtual void set_no_window_mode(bool p_enable); - virtual bool is_no_window_mode_enabled() const; - virtual void debug_break(); virtual int get_exit_code() const; |