diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-03-22 19:22:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-22 19:22:46 +0100 |
commit | 9162f27836b13744dd5bb41f3fca2855e6018adf (patch) | |
tree | 9d4d2bcfdb34d17abbe8666489698d411a2ea4cc /core/core_bind.h | |
parent | a30d17fe23cab95716e4b1bff9dfac21b70b5481 (diff) | |
parent | 2f651277dac25ca8628102068929e3cf3e245904 (diff) | |
download | redot-engine-9162f27836b13744dd5bb41f3fca2855e6018adf.tar.gz |
Merge pull request #59314 from reduz/add-static-methods-to-classdb
Diffstat (limited to 'core/core_bind.h')
-rw-r--r-- | core/core_bind.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/core_bind.h b/core/core_bind.h index 4a7eb718f1..a0fdf26dff 100644 --- a/core/core_bind.h +++ b/core/core_bind.h @@ -436,7 +436,7 @@ public: void store_var(const Variant &p_var, bool p_full_objects = false); - bool file_exists(const String &p_name) const; // Return true if a file exists. + static bool file_exists(const String &p_name); // Return true if a file exists. uint64_t get_modified_time(const String &p_file) const; |