summaryrefslogtreecommitdiffstats
path: root/scene/resources/theme.h
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2018-11-27 20:42:47 -0300
committerJuan Linietsky <reduzio@gmail.com>2018-11-27 20:42:47 -0300
commitb243c26697d8e1892c54c41e7a2e3dc909c4197d (patch)
tree26ef1c950a72a09928e00a1166ff957d3c0b95c1 /scene/resources/theme.h
parent3a93499f899c68db38b68239f227e381e5ded20e (diff)
downloadredot-engine-b243c26697d8e1892c54c41e7a2e3dc909c4197d.tar.gz
Get rid of ancient .theme format for Theme resource. It was not working and can be done the same using .tres format. Closes #19038
Diffstat (limited to 'scene/resources/theme.h')
-rw-r--r--scene/resources/theme.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/scene/resources/theme.h b/scene/resources/theme.h
index c9da5f6ead..ba47c5fb3c 100644
--- a/scene/resources/theme.h
+++ b/scene/resources/theme.h
@@ -190,12 +190,4 @@ public:
~Theme();
};
-class ResourceFormatLoaderTheme : public 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;
- virtual bool handles_type(const String &p_type) const;
- virtual String get_resource_type(const String &p_path) const;
-};
-
#endif