diff options
author | Ignacio Etcheverry <neikeq@users.noreply.github.com> | 2019-02-03 06:31:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-03 06:31:52 +0100 |
commit | 4e4e889c751ac57a217ea924ea0a03e43bd3e6d6 (patch) | |
tree | 0d118fc09dc8f6fedd33a13592ab8ad9a3ff9c4c /core/os | |
parent | 869887641f3d31f19837a34da116039a26618cb0 (diff) | |
parent | 065828d15994a4da7dde882e29aaa27d483a5029 (diff) |
Merge pull request #25478 from neikeq/rr
Mono: Fix MonoPosixHelper not being found
Diffstat (limited to 'core/os')
-rw-r--r-- | core/os/os.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/os/os.h b/core/os/os.h index a08bdcb608..20a3494e11 100644 --- a/core/os/os.h +++ b/core/os/os.h @@ -266,6 +266,7 @@ public: virtual bool has_environment(const String &p_var) const = 0; virtual String get_environment(const String &p_var) const = 0; + virtual bool set_environment(const String &p_var, const String &p_value) const = 0; virtual String get_name() = 0; virtual List<String> get_cmdline_args() const { return _cmdline; } |