summaryrefslogtreecommitdiffstats
path: root/modules/mono/mono_gd/gd_mono_method.h
diff options
context:
space:
mode:
authorIgnacio Etcheverry <ignalfonsore@gmail.com>2019-05-18 04:14:21 +0200
committerIgnacio Etcheverry <ignalfonsore@gmail.com>2019-05-18 19:39:56 +0200
commit5a4bf4f369505c47cbb82e691d32087a8a81157d (patch)
tree9df32b6e10d4ca5229034e407d41319476491c84 /modules/mono/mono_gd/gd_mono_method.h
parent7112a45d9928562722e6b91d3482b29df8ed5ff8 (diff)
downloadredot-engine-5a4bf4f369505c47cbb82e691d32087a8a81157d.tar.gz
C#: Marshalling support for IEnumerable<> and IDictionary<,>
Also fixed the hint string of exported members.
Diffstat (limited to 'modules/mono/mono_gd/gd_mono_method.h')
-rw-r--r--modules/mono/mono_gd/gd_mono_method.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/mono/mono_gd/gd_mono_method.h b/modules/mono/mono_gd/gd_mono_method.h
index f74cef438d..2fc8628f27 100644
--- a/modules/mono/mono_gd/gd_mono_method.h
+++ b/modules/mono/mono_gd/gd_mono_method.h
@@ -57,9 +57,11 @@ class GDMonoMethod : public IMonoClassMember {
MonoMethod *mono_method;
public:
- virtual MemberType get_member_type() GD_FINAL { return MEMBER_TYPE_METHOD; }
+ virtual GDMonoClass *get_enclosing_class() const GD_FINAL;
- virtual StringName get_name() GD_FINAL { return name; }
+ virtual MemberType get_member_type() const GD_FINAL { return MEMBER_TYPE_METHOD; }
+
+ virtual StringName get_name() const GD_FINAL { return name; }
virtual bool is_static() GD_FINAL;