diff options
author | Pedro J. Estébanez <pedrojrulez@gmail.com> | 2022-08-24 20:06:03 +0200 |
---|---|---|
committer | Pedro J. Estébanez <pedrojrulez@gmail.com> | 2022-08-24 20:06:34 +0200 |
commit | 8c6b2fbb908261d29a6692dd7a816464c28520d2 (patch) | |
tree | a6347857968df74ed5f62cd7f17d944c4c52c16c /core/io/file_access.cpp | |
parent | 649e76aa389000c0cbda94b92f596f8c3b96b76f (diff) | |
download | redot-engine-8c6b2fbb908261d29a6692dd7a816464c28520d2.tar.gz |
Add FileAccess::get_access_type()
Diffstat (limited to 'core/io/file_access.cpp')
-rw-r--r-- | core/io/file_access.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/io/file_access.cpp b/core/io/file_access.cpp index 8ed3d40c22..72c00bd678 100644 --- a/core/io/file_access.cpp +++ b/core/io/file_access.cpp @@ -115,6 +115,10 @@ FileAccess::CreateFunc FileAccess::get_create_func(AccessType p_access) { return create_func[p_access]; } +FileAccess::AccessType FileAccess::get_access_type() const { + return _access_type; +} + String FileAccess::fix_path(const String &p_path) const { //helper used by file accesses that use a single filesystem |