diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-08-08 11:24:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-08 11:24:27 +0200 |
commit | e578c1fef86b8b1307e9ceb089b6efd5e53a5f18 (patch) | |
tree | eb6aba7cc52af09e348749cdc13b24210aef98e8 /core/func_ref.h | |
parent | f0ad034a1db01be35e532664fc5f65cf6a8ab83d (diff) | |
parent | 7123fab771cb443d5b32006d062eb41ec8e98001 (diff) |
Merge pull request #31195 from bojidar-bg/31143-funcref-call_funcv
Add FuncRef.call_funcv
Diffstat (limited to 'core/func_ref.h')
-rw-r--r-- | core/func_ref.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/func_ref.h b/core/func_ref.h index a143b58bf0..af0bf63203 100644 --- a/core/func_ref.h +++ b/core/func_ref.h @@ -44,6 +44,7 @@ protected: public: Variant call_func(const Variant **p_args, int p_argcount, Variant::CallError &r_error); + Variant call_funcv(const Array &p_args); void set_instance(Object *p_obj); void set_function(const StringName &p_func); bool is_valid() const; |