Update to the latest engine.

This commit is contained in:
Relintai 2023-08-30 13:14:10 +02:00
parent 82a49f31a1
commit 44d07dd428
2 changed files with 2 additions and 2 deletions

View File

@ -3401,7 +3401,7 @@ void CSharpScript::get_members(RBSet<StringName> *p_members) {
/*************** RESOURCE ***************/
RES ResourceFormatLoaderCSharpScript::load(const String &p_path, const String &p_original_path, Error *r_error) {
RES ResourceFormatLoaderCSharpScript::load(const String &p_path, const String &p_original_path, Error *r_error, bool p_no_subresource_cache) {
if (r_error)
*r_error = ERR_FILE_CANT_OPEN;

View File

@ -482,7 +482,7 @@ public:
class ResourceFormatLoaderCSharpScript : public ResourceFormatLoader {
public:
virtual RES load(const String &p_path, const String &p_original_path = "", Error *r_error = NULL);
virtual RES load(const String &p_path, const String &p_original_path = "", Error *r_error = NULL, bool p_no_subresource_cache = false);
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;