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 /modules/gdscript/gdscript.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 'modules/gdscript/gdscript.h')
-rw-r--r-- | modules/gdscript/gdscript.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/modules/gdscript/gdscript.h b/modules/gdscript/gdscript.h index 40b773d99f..1756f6eabc 100644 --- a/modules/gdscript/gdscript.h +++ b/modules/gdscript/gdscript.h @@ -509,7 +509,6 @@ public: }; class ResourceFormatLoaderGDScript : public ResourceFormatLoader { - GDCLASS(ResourceFormatLoaderGDScript, ResourceFormatLoader) public: virtual RES load(const String &p_path, const String &p_original_path = "", Error *r_error = NULL); virtual void get_recognized_extensions(List<String> *p_extensions) const; @@ -519,7 +518,6 @@ public: }; class ResourceFormatSaverGDScript : public ResourceFormatSaver { - GDCLASS(ResourceFormatSaverGDScript, ResourceFormatSaver) public: virtual Error save(const String &p_path, const RES &p_resource, uint32_t p_flags = 0); virtual void get_recognized_extensions(const RES &p_resource, List<String> *p_extensions) const; |