summaryrefslogtreecommitdiff
path: root/core/func_ref.h
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2020-09-27 10:08:25 +0200
committerGitHub <noreply@github.com>2020-09-27 10:08:25 +0200
commit545da8242723b9856119f5a8f27892a2cddeb2ac (patch)
tree9a4b6553238e01936d35ba6a259a480e44c69d3c /core/func_ref.h
parent5e9194086dfce421a4b0657c347b53db22b64b87 (diff)
parent75154e64a98bc26b7c8fc0934d18b846463b0c58 (diff)
Merge pull request #42340 from Rubonnek/get-funcref-function
Allow retrieval of FuncRef function string
Diffstat (limited to 'core/func_ref.h')
-rw-r--r--core/func_ref.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/func_ref.h b/core/func_ref.h
index 6b0b22bab5..75b84e705e 100644
--- a/core/func_ref.h
+++ b/core/func_ref.h
@@ -46,6 +46,7 @@ public:
Variant call_funcv(const Array &p_args);
void set_instance(Object *p_obj);
void set_function(const StringName &p_func);
+ StringName get_function();
bool is_valid() const;
FuncRef() {}