summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/gdscript_function.h
diff options
context:
space:
mode:
authorGeorge Marques <george@gmarqu.es>2022-04-06 14:14:38 -0300
committerGeorge Marques <george@gmarqu.es>2022-04-06 14:14:38 -0300
commit4710e2b278bfaa60cfcd3158e2d23e8e9a901e1f (patch)
treedbfc53c463cddaa80c6098cb49103e21f1e7f140 /modules/gdscript/gdscript_function.h
parente4f0fc50f79336cf76beec40e5e8e5164b288714 (diff)
downloadredot-engine-4710e2b278bfaa60cfcd3158e2d23e8e9a901e1f.tar.gz
GDScript: Add support for static method calls in native types
Diffstat (limited to 'modules/gdscript/gdscript_function.h')
-rw-r--r--modules/gdscript/gdscript_function.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/gdscript/gdscript_function.h b/modules/gdscript/gdscript_function.h
index 3ee664c76d..a7ad2b65fd 100644
--- a/modules/gdscript/gdscript_function.h
+++ b/modules/gdscript/gdscript_function.h
@@ -259,6 +259,7 @@ public:
OPCODE_CALL_METHOD_BIND,
OPCODE_CALL_METHOD_BIND_RET,
OPCODE_CALL_BUILTIN_STATIC,
+ OPCODE_CALL_NATIVE_STATIC,
// ptrcall have one instruction per return type.
OPCODE_CALL_PTRCALL_NO_RETURN,
OPCODE_CALL_PTRCALL_BOOL,