summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorest31 <MTest31@outlook.com>2015-11-30 02:35:59 +0100
committerest31 <MTest31@outlook.com>2015-11-30 02:35:59 +0100
commite1d02e4831fdec372771956aa2ac70954ab3fe7b (patch)
treea95d60ae6481cd96a53af896710e43429187353a /core
parent15f6d3cebf9e8c9288132454816f1152e16dde36 (diff)
Make the setting unix-only.
For this, put the detection into the OS class and its subclass.
Diffstat (limited to 'core')
-rw-r--r--core/os/os.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/os/os.h b/core/os/os.h
index e5338b4a02..e908177df7 100644
--- a/core/os/os.h
+++ b/core/os/os.h
@@ -184,6 +184,7 @@ public:
virtual void set_low_processor_usage_mode(bool p_enabled);
virtual bool is_in_low_processor_usage_mode() const;
+ virtual String get_installed_templates_path() const { return ""; };
virtual String get_executable_path() const;
virtual Error execute(const String& p_path, const List<String>& p_arguments,bool p_blocking,ProcessID *r_child_id=NULL,String* r_pipe=NULL,int *r_exitcode=NULL)=0;
virtual Error kill(const ProcessID& p_pid)=0;