diff options
author | ppphp <kevinniub@gmail.com> | 2024-03-25 04:06:34 +0800 |
---|---|---|
committer | ppphp <kevinniub@gmail.com> | 2024-03-25 04:06:34 +0800 |
commit | d4e1a74efb51efa796939111aaca31483f6187fa (patch) | |
tree | f34938c9091d19ee648a6737109d6eff79a6c54e /core/io/image_loader.h | |
parent | 99ff024f78f65ba0bc54fb409cfeca43ba2008fe (diff) | |
download | redot-engine-d4e1a74efb51efa796939111aaca31483f6187fa.tar.gz |
Add 'override' mark to ResourceFormat class
Diffstat (limited to 'core/io/image_loader.h')
-rw-r--r-- | core/io/image_loader.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/io/image_loader.h b/core/io/image_loader.h index e9b434522d..26af650344 100644 --- a/core/io/image_loader.h +++ b/core/io/image_loader.h @@ -103,10 +103,10 @@ public: class ResourceFormatLoaderImage : public ResourceFormatLoader { public: - virtual Ref<Resource> load(const String &p_path, const String &p_original_path = "", Error *r_error = nullptr, bool p_use_sub_threads = false, float *r_progress = nullptr, CacheMode p_cache_mode = CACHE_MODE_REUSE); - virtual void get_recognized_extensions(List<String> *p_extensions) const; - virtual bool handles_type(const String &p_type) const; - virtual String get_resource_type(const String &p_path) const; + virtual Ref<Resource> load(const String &p_path, const String &p_original_path = "", Error *r_error = nullptr, bool p_use_sub_threads = false, float *r_progress = nullptr, CacheMode p_cache_mode = CACHE_MODE_REUSE) override; + virtual void get_recognized_extensions(List<String> *p_extensions) const override; + virtual bool handles_type(const String &p_type) const override; + virtual String get_resource_type(const String &p_path) const override; }; #endif // IMAGE_LOADER_H |