diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-09-20 18:55:10 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-09-20 18:55:10 +0200 |
commit | ce0fa4c691638949387d25fc19fcfe10898d218c (patch) | |
tree | 0325754b4fee9d3debaedf3a5f52cde843d5411d /modules/mono/csharp_script.h | |
parent | 6df12fe1873c7c477454bc87effe1c87a9735ddd (diff) | |
parent | 67e1373e5a6ccaff75ea274ed31bd27c57e9cada (diff) | |
download | redot-engine-ce0fa4c691638949387d25fc19fcfe10898d218c.tar.gz |
Merge pull request #81783 from zaevi/fix-csharp-static-method
C#: make C# static methods accessible.
Diffstat (limited to 'modules/mono/csharp_script.h')
-rw-r--r-- | modules/mono/csharp_script.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/mono/csharp_script.h b/modules/mono/csharp_script.h index 33862016a4..fd9e281e63 100644 --- a/modules/mono/csharp_script.h +++ b/modules/mono/csharp_script.h @@ -199,6 +199,7 @@ public: void get_script_method_list(List<MethodInfo> *p_list) const override; bool has_method(const StringName &p_method) const override; MethodInfo get_method_info(const StringName &p_method) const override; + Variant callp(const StringName &p_method, const Variant **p_args, int p_argcount, Callable::CallError &r_error) override; int get_member_line(const StringName &p_member) const override; |