summaryrefslogtreecommitdiff
path: root/modules/mono/csharp_script.h
diff options
context:
space:
mode:
authorIgnacio Roldán Etcheverry <neikeq@users.noreply.github.com>2021-09-13 20:21:48 +0200
committerGitHub <noreply@github.com>2021-09-13 20:21:48 +0200
commit875b5fbf17c2f5f512594f2f3c16af77c8fbadc3 (patch)
tree2bb33d194243c3cd22a311ae877ef4641b27de72 /modules/mono/csharp_script.h
parent0c2ab55a58fd4fb9ffec5e94f9e07d17dc47b40a (diff)
parent19f25b68475b63b8b5e781dd94da0212e5aacd61 (diff)
Merge pull request #52607 from paulloz/improve-cs-method-listing
Improve C# method listing
Diffstat (limited to 'modules/mono/csharp_script.h')
-rw-r--r--modules/mono/csharp_script.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/csharp_script.h b/modules/mono/csharp_script.h
index e3bbb20dec..afc17f694a 100644
--- a/modules/mono/csharp_script.h
+++ b/modules/mono/csharp_script.h
@@ -293,7 +293,7 @@ public:
void get_property_list(List<PropertyInfo> *p_properties) const override;
Variant::Type get_property_type(const StringName &p_name, bool *r_is_valid) const override;
- /* TODO */ void get_method_list(List<MethodInfo> *p_list) const override {}
+ void get_method_list(List<MethodInfo> *p_list) const override;
bool has_method(const StringName &p_method) const override;
Variant call(const StringName &p_method, const Variant **p_args, int p_argcount, Callable::CallError &r_error) override;