diff options
| author | Juan Linietsky | 2014-12-02 14:02:41 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2014-12-02 14:02:41 -0300 |
| commit | e361e8539c889d3ca66e77ebb5d0ceb61d17f49d (patch) | |
| tree | e34bb70d58e8d023df34c3e6744b5cdfa866ef7d /core/os/os.cpp | |
| parent | 9d5a2cb8470d538fa33f9f7b4d6cdd5390b3b70b (diff) | |
| download | godot-e361e8539c889d3ca66e77ebb5d0ceb61d17f49d.tar.gz godot-e361e8539c889d3ca66e77ebb5d0ceb61d17f49d.tar.zst godot-e361e8539c889d3ca66e77ebb5d0ceb61d17f49d.zip | |
Diffstat (limited to 'core/os/os.cpp')
| -rw-r--r-- | core/os/os.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/os/os.cpp b/core/os/os.cpp index e56f4a490..081f7c1c5 100644 --- a/core/os/os.cpp +++ b/core/os/os.cpp @@ -280,6 +280,12 @@ String OS::get_resource_dir() const { return Globals::get_singleton()->get_resource_path(); } + +String OS::get_system_dir(SystemDir p_dir) const { + + return "."; +} + String OS::get_data_dir() const { return "."; |
