diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-04-08 10:13:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-08 10:13:59 +0200 |
commit | 668bf1fd0dee569769786af37942eb8a4ef730a6 (patch) | |
tree | 9372dbc06109c6e36ebf5afc0d4819477cbd8869 /modules/gdscript/gdscript.h | |
parent | 853af06f5aba2fbc12b50409fe663a9eade3bb45 (diff) | |
parent | 00799fc8c245a09259fda8d17e65428a904402c6 (diff) |
Merge pull request #27710 from Calinou/script-templates-typed-gdscript
Add support for type hints in non-default script editor templates
Diffstat (limited to 'modules/gdscript/gdscript.h')
-rw-r--r-- | modules/gdscript/gdscript.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/gdscript/gdscript.h b/modules/gdscript/gdscript.h index ded873c7d3..c67e390e32 100644 --- a/modules/gdscript/gdscript.h +++ b/modules/gdscript/gdscript.h @@ -444,6 +444,7 @@ public: virtual void get_reserved_words(List<String> *p_words) const; virtual void get_comment_delimiters(List<String> *p_delimiters) const; virtual void get_string_delimiters(List<String> *p_delimiters) const; + virtual String _get_processed_template(const String &p_template, const String &p_base_class_name) const; virtual Ref<Script> get_template(const String &p_class_name, const String &p_base_class_name) const; virtual bool is_using_templates(); virtual void make_template(const String &p_class_name, const String &p_base_class_name, Ref<Script> &p_script); |