diff options
author | Paulb23 <p_batty@hotmail.co.uk> | 2020-09-13 21:14:20 +0100 |
---|---|---|
committer | Paulb23 <p_batty@hotmail.co.uk> | 2021-06-01 15:38:45 +0100 |
commit | 1c166737986a4c30fa5327f5f5eb97906dfa8abf (patch) | |
tree | b572b8346d8e847bba3bc9134cb108ef78adbf45 /core/object | |
parent | 680dc9e81a79761f733db5ce7f3fa0c05b8e1ff6 (diff) | |
download | redot-engine-1c166737986a4c30fa5327f5f5eb97906dfa8abf.tar.gz |
Move and expose AutoComplete in CodeEdit
Diffstat (limited to 'core/object')
-rw-r--r-- | core/object/script_language.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/object/script_language.h b/core/object/script_language.h index bb46c718b2..9ed3c7e80f 100644 --- a/core/object/script_language.h +++ b/core/object/script_language.h @@ -242,6 +242,8 @@ public: }; struct ScriptCodeCompletionOption { + /* Keep enum in Sync with: */ + /* /scene/gui/code_edit.h - CodeEdit::CodeCompletionKind */ enum Kind { KIND_CLASS, KIND_FUNCTION, |