summaryrefslogtreecommitdiff
path: root/core/io
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2021-05-24 15:14:02 +0200
committerGitHub <noreply@github.com>2021-05-24 15:14:02 +0200
commit65eff1cfddb2ac2a627679f01c8efb90c4d6c34d (patch)
tree253aa1932415fbf56c71c88c67f907f1131f09ef /core/io
parent9cf1d034a7f08c37f3c7f4660c50c8784864daa3 (diff)
parenta1cb6f07a1f4c85c6e00e9cdcb18e048846fc706 (diff)
Merge pull request #46866 from bruvzg/symlinks_and_macos_gdn_framework_export_4
Diffstat (limited to 'core/io')
-rw-r--r--core/io/file_access_pack.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/core/io/file_access_pack.h b/core/io/file_access_pack.h
index e47c9ea543..763c0fb327 100644
--- a/core/io/file_access_pack.h
+++ b/core/io/file_access_pack.h
@@ -245,6 +245,10 @@ public:
uint64_t get_space_left();
+ virtual bool is_link(String p_file) { return false; }
+ virtual String read_link(String p_file) { return p_file; }
+ virtual Error create_link(String p_source, String p_target) { return FAILED; }
+
virtual String get_filesystem_type() const;
DirAccessPack();