diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-11-11 14:18:25 -0600 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-11-11 14:18:25 -0600 |
commit | 2430b7f9b41c84e37c4d47f5adde9cdb9c9b1d59 (patch) | |
tree | 4de561a465a0acf5ec66ee4b23a24458b28215ef /core/io/resource_format_binary.h | |
parent | 93815e7e9767058ec5bf54c2bae442bbfcfc074e (diff) | |
parent | d57846087b225d2d8b7e8dca5db0a3874924e448 (diff) | |
download | redot-engine-2430b7f9b41c84e37c4d47f5adde9cdb9c9b1d59.tar.gz |
Merge pull request #97352 from reduz/uids-everywhere
Universalize UID support in all resource types
Diffstat (limited to 'core/io/resource_format_binary.h')
-rw-r--r-- | core/io/resource_format_binary.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/io/resource_format_binary.h b/core/io/resource_format_binary.h index 222e633e58..ec8d7ead5d 100644 --- a/core/io/resource_format_binary.h +++ b/core/io/resource_format_binary.h @@ -118,6 +118,7 @@ public: virtual String get_resource_script_class(const String &p_path) const override; virtual void get_classes_used(const String &p_path, HashSet<StringName> *r_classes) override; virtual ResourceUID::ID get_resource_uid(const String &p_path) const override; + virtual bool has_custom_uid_support() const override; virtual void get_dependencies(const String &p_path, List<String> *p_dependencies, bool p_add_types = false) override; virtual Error rename_dependencies(const String &p_path, const HashMap<String, String> &p_map) override; }; |