diff options
author | Will Nations <willnationsdev@gmail.com> | 2018-07-28 22:36:43 -0500 |
---|---|---|
committer | Will Nations <willnationsdev@gmail.com> | 2018-08-14 14:18:05 -0500 |
commit | 6d9cc032e71ccc768064bf908623b0954d01181c (patch) | |
tree | 1765ce220fa8329ebd7a48e611ab6db3f7655367 /core | |
parent | b4f579b5ba8df8b8972c79a10b6d9c8b0719829f (diff) |
Add custom icons to script classes.
Diffstat (limited to 'core')
-rw-r--r-- | core/script_language.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/script_language.h b/core/script_language.h index a5987e2a78..71b705e960 100644 --- a/core/script_language.h +++ b/core/script_language.h @@ -315,7 +315,7 @@ public: virtual void frame(); virtual bool handles_global_class_type(const String &p_type) const { return false; } - virtual String get_global_class_name(const String &p_path, String *r_base_type = NULL) const { return String(); } + virtual String get_global_class_name(const String &p_path, String *r_base_type = NULL, String *r_icon_path = NULL) const { return String(); } virtual ~ScriptLanguage() {} }; |