diff options
author | George Marques <george@gmarqu.es> | 2018-05-29 23:16:51 -0300 |
---|---|---|
committer | George Marques <george@gmarqu.es> | 2018-07-20 21:55:16 -0300 |
commit | 8aab9a06d4db1106dc733022f951db979e39f97b (patch) | |
tree | fd01fb0fde601f3788812eb90c39510811214d2a /modules/gdscript/gdscript.cpp | |
parent | cfcb6e11f25adb13177ba08777263288a5ec6f61 (diff) | |
download | redot-engine-8aab9a06d4db1106dc733022f951db979e39f97b.tar.gz |
Add typing syntax
Diffstat (limited to 'modules/gdscript/gdscript.cpp')
-rw-r--r-- | modules/gdscript/gdscript.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/gdscript/gdscript.cpp b/modules/gdscript/gdscript.cpp index b3ebd4fe4b..f221aac5fe 100644 --- a/modules/gdscript/gdscript.cpp +++ b/modules/gdscript/gdscript.cpp @@ -1735,7 +1735,9 @@ void GDScriptLanguage::get_reserved_words(List<String> *p_words) const { "NAN", "self", "true", + "void", // functions + "as", "assert", "breakpoint", "class", |