diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-04-18 14:16:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-18 14:16:58 +0200 |
commit | 5237bc952db59f452e760ac07e68fbb231003d49 (patch) | |
tree | d2e94c525c6dadb695a40868ebaf5fd2157f01ce /modules/gdscript/gd_script.h | |
parent | 7088d9e30f7afd8ca9cf262fc340266d4218808c (diff) | |
parent | c59bd79e02548533c61e1ce30e3009f7804658f7 (diff) | |
download | redot-engine-5237bc952db59f452e760ac07e68fbb231003d49.tar.gz |
Merge pull request #8424 from Paulb23/convert_indent
Support for space indentation
Diffstat (limited to 'modules/gdscript/gd_script.h')
-rw-r--r-- | modules/gdscript/gd_script.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/gdscript/gd_script.h b/modules/gdscript/gd_script.h index 93f8ee8721..f92c11b9e0 100644 --- a/modules/gdscript/gd_script.h +++ b/modules/gdscript/gd_script.h @@ -390,6 +390,7 @@ public: #ifdef TOOLS_ENABLED virtual Error lookup_code(const String &p_code, const String &p_symbol, const String &p_base_path, Object *p_owner, LookupResult &r_result); #endif + virtual String _get_indentation() const; virtual void auto_indent_code(String &p_code, int p_from_line, int p_to_line) const; virtual void add_global_constant(const StringName &p_variable, const Variant &p_value); |