diff options
author | Michael Alexsander Silva Dias <michaelalexsander@protonmail.com> | 2018-10-30 01:49:08 -0300 |
---|---|---|
committer | Michael Alexsander Silva Dias <michaelalexsander@protonmail.com> | 2018-10-31 15:40:19 -0300 |
commit | 1ca61a35d85f039cbe3cffe60a6f7ba5fdf578b3 (patch) | |
tree | 6e289b5585d0c7ab455ed8f6c1dd6de859e915ac /modules/gdscript/gdscript_functions.h | |
parent | 13eaded911ea1b0c48c0917f156f391ad39b8714 (diff) | |
download | redot-engine-1ca61a35d85f039cbe3cffe60a6f7ba5fdf578b3.tar.gz |
Add new "push_*()" functions to GDScript
Diffstat (limited to 'modules/gdscript/gdscript_functions.h')
-rw-r--r-- | modules/gdscript/gdscript_functions.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript_functions.h b/modules/gdscript/gdscript_functions.h index e920dd4ece..33d5f27230 100644 --- a/modules/gdscript/gdscript_functions.h +++ b/modules/gdscript/gdscript_functions.h @@ -97,6 +97,8 @@ public: TEXT_PRINTERR, TEXT_PRINTRAW, TEXT_PRINT_DEBUG, + PUSH_ERROR, + PUSH_WARNING, VAR_TO_STR, STR_TO_VAR, VAR_TO_BYTES, @@ -117,7 +119,6 @@ public: LEN, IS_INSTANCE_VALID, FUNC_MAX - }; static const char *get_func_name(Function p_func); |