summaryrefslogtreecommitdiffstats
path: root/core/io/file_access_pack.h
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2018-08-10 13:28:47 -0300
committerGitHub <noreply@github.com>2018-08-10 13:28:47 -0300
commit275e0d5ee4e80d9d3cd124ffa29a691b9aed3e70 (patch)
tree6cb7e7f8bec4a2d599ecd0dbbc17f651c56fc710 /core/io/file_access_pack.h
parentb9730a695643af15bd97f9b87ae656b735281bba (diff)
parentd315b0fb8aa03ee6ecc7d93d884b606dc19c6ad5 (diff)
downloadredot-engine-275e0d5ee4e80d9d3cd124ffa29a691b9aed3e70.tar.gz
Merge pull request #18914 from notwarp/master
added get_creation_time function for gdscript
Diffstat (limited to 'core/io/file_access_pack.h')
-rw-r--r--core/io/file_access_pack.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/io/file_access_pack.h b/core/io/file_access_pack.h
index 8a40e6d78c..513e2896c3 100644
--- a/core/io/file_access_pack.h
+++ b/core/io/file_access_pack.h
@@ -142,6 +142,7 @@ class FileAccessPack : public FileAccess {
FileAccess *f;
virtual Error _open(const String &p_path, int p_mode_flags);
virtual uint64_t _get_modified_time(const String &p_file) { return 0; }
+ virtual uint64_t _get_creation_time(const String &p_file) { return 0; } // NEW FUNCTION
public:
virtual void close();