diff options
author | Daniele Giuliani <d.giuliani304@gmail.com> | 2018-05-16 00:50:57 +0200 |
---|---|---|
committer | Daniele Giuliani <d.giuliani304@gmail.com> | 2018-05-16 00:50:57 +0200 |
commit | d315b0fb8aa03ee6ecc7d93d884b606dc19c6ad5 (patch) | |
tree | 3ce31259c79d26f74f1dfcd9c9d4a77df261ce61 /core/bind/core_bind.h | |
parent | 005b69cf6e276209464cc8c36ebc7376679925b6 (diff) | |
download | redot-engine-d315b0fb8aa03ee6ecc7d93d884b606dc19c6ad5.tar.gz |
added get_creation_time function for gdscript
Diffstat (limited to 'core/bind/core_bind.h')
-rw-r--r-- | core/bind/core_bind.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/bind/core_bind.h b/core/bind/core_bind.h index a363f5970f..4bf4fd9146 100644 --- a/core/bind/core_bind.h +++ b/core/bind/core_bind.h @@ -481,6 +481,7 @@ public: bool file_exists(const String &p_name) const; ///< return true if a file exists uint64_t get_modified_time(const String &p_file) const; + uint64_t get_creation_time(const String &p_file) const; // NEW FUNCTION _File(); virtual ~_File(); |