| 10 | #include "utility/gdre_settings.h" |
| 11 | |
| 12 | Ref<Resource> ResourceFormatGDScriptLoader::load(const String &p_path, const String &p_original_path, Error *r_error, bool p_use_sub_threads, float *r_progress, CacheMode p_cache_mode) { |
| 13 | return custom_load(p_path, p_original_path, ResourceCompatLoader::get_default_load_type(), r_error, p_use_sub_threads, p_cache_mode); |
| 14 | } |
| 15 | |
| 16 | void ResourceFormatGDScriptLoader::get_recognized_extensions(List<String> *p_extensions) const { |
| 17 | p_extensions->push_back("gd"); |
no outgoing calls