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 /platform/uwp/os_uwp.cpp | |
parent | 869887641f3d31f19837a34da116039a26618cb0 (diff) | |
parent | 065828d15994a4da7dde882e29aaa27d483a5029 (diff) |
Merge pull request #25478 from neikeq/rr
Mono: Fix MonoPosixHelper not being found
Diffstat (limited to 'platform/uwp/os_uwp.cpp')
-rw-r--r-- | platform/uwp/os_uwp.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/platform/uwp/os_uwp.cpp b/platform/uwp/os_uwp.cpp index ea0193b8ed..ea4f63b49c 100644 --- a/platform/uwp/os_uwp.cpp +++ b/platform/uwp/os_uwp.cpp @@ -739,6 +739,11 @@ String OSUWP::get_environment(const String &p_var) const { return ""; }; +bool OSUWP::set_environment(const String &p_var, const String &p_value) const { + + return false; +} + String OSUWP::get_stdin_string(bool p_block) { return String(); |