diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-06-18 20:07:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-18 20:07:10 +0200 |
commit | c6507933a72f0f423ebe726bdd259b8d16d60c3c (patch) | |
tree | 9a6d1bf894cef2065b507217f3b29ebec189832b /scene/resources/resource_format_text.h | |
parent | 0cdbf7315b1ce7093f9c37eae2d9df3294cfb998 (diff) | |
parent | d6176db271d6fd11aa88edfd0a4c1e8be04e7471 (diff) |
Merge pull request #29872 from akien-mga/unexpose-resourceformatloaders
Unexpose subclasses of ResourceFormatLoader and -Saver
Diffstat (limited to 'scene/resources/resource_format_text.h')
-rw-r--r-- | scene/resources/resource_format_text.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/scene/resources/resource_format_text.h b/scene/resources/resource_format_text.h index 06c841229b..0041989f09 100644 --- a/scene/resources/resource_format_text.h +++ b/scene/resources/resource_format_text.h @@ -128,7 +128,6 @@ public: }; class ResourceFormatLoaderText : public ResourceFormatLoader { - GDCLASS(ResourceFormatLoaderText, ResourceFormatLoader) public: static ResourceFormatLoaderText *singleton; virtual Ref<ResourceInteractiveLoader> load_interactive(const String &p_path, const String &p_original_path = "", Error *r_error = NULL); @@ -187,7 +186,6 @@ public: }; class ResourceFormatSaverText : public ResourceFormatSaver { - GDCLASS(ResourceFormatSaverText, ResourceFormatSaver) public: static ResourceFormatSaverText *singleton; virtual Error save(const String &p_path, const RES &p_resource, uint32_t p_flags = 0); |