diff options
author | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2019-01-29 22:59:38 +0100 |
---|---|---|
committer | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2019-02-03 05:38:47 +0100 |
commit | 41873ffa88da0a30189d66b75a8e65ee49645bc2 (patch) | |
tree | 37a639ce3732b181365bede3a41b889ac504c824 /core | |
parent | d3c51a5dfb5fb26081d64e16b198ee9ae1beb481 (diff) |
Added set_environment to OS class
Diffstat (limited to 'core')
-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 36d4e5a8c1..9f3713e164 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; } |