diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-10-17 21:29:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-17 21:29:19 +0200 |
commit | fb7428e797ba10fb666fa44b6fe55bcd7c58ee21 (patch) | |
tree | 79fcac024e497ca6a426d4ec6ff9bae05b4a7ba6 /modules/mono/mono_gd/gd_mono_class.h | |
parent | 6e960c7d6bbf7481bae41ab0ebb39bc75619272a (diff) | |
parent | 6e6b455d1fe791894e1a6bd66e1f5f8471c02abc (diff) |
Merge pull request #12178 from neikeq/k
Export attribute fixes and improvements
Diffstat (limited to 'modules/mono/mono_gd/gd_mono_class.h')
-rw-r--r-- | modules/mono/mono_gd/gd_mono_class.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/mono/mono_gd/gd_mono_class.h b/modules/mono/mono_gd/gd_mono_class.h index 1e72553879..ef1ca425a7 100644 --- a/modules/mono/mono_gd/gd_mono_class.h +++ b/modules/mono/mono_gd/gd_mono_class.h @@ -98,8 +98,14 @@ public: _FORCE_INLINE_ MonoClass *get_raw() const { return mono_class; } _FORCE_INLINE_ const GDMonoAssembly *get_assembly() const { return assembly; } + String get_full_name() const; + GDMonoClass *get_parent_class(); +#ifdef TOOLS_ENABLED + Vector<MonoClassField *> get_enum_fields(); +#endif + bool has_method(const StringName &p_name); bool has_attribute(GDMonoClass *p_attr_class); |