diff options
author | Ignacio Etcheverry <neikeq@users.noreply.github.com> | 2017-10-07 20:12:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-07 20:12:25 +0200 |
commit | 5a49106ff45be32018793eeca3fb168b3a374faf (patch) | |
tree | a4599339285ac74c5fd9e64b24ad294d95cd561f /modules/mono/mono_gd/gd_mono.h | |
parent | bd10a002402de6e3a69a17af604784ea7f5b3330 (diff) | |
parent | 5ab3537179a552f8d95e680ec0e35621615248f4 (diff) |
Merge pull request #11900 from neikeq/a
Fix assembly load hooks and sizeof wrong type
Diffstat (limited to 'modules/mono/mono_gd/gd_mono.h')
-rw-r--r-- | modules/mono/mono_gd/gd_mono.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/mono/mono_gd/gd_mono.h b/modules/mono/mono_gd/gd_mono.h index ab96d575e6..b188c0730a 100644 --- a/modules/mono/mono_gd/gd_mono.h +++ b/modules/mono/mono_gd/gd_mono.h @@ -122,7 +122,9 @@ public: static GDMono *get_singleton() { return singleton; } + // Do not use these, unless you know what you're doing void add_assembly(uint32_t p_domain_id, GDMonoAssembly *p_assembly); + GDMonoAssembly **get_loaded_assembly(const String &p_name); _FORCE_INLINE_ bool is_runtime_initialized() const { return runtime_initialized; } _FORCE_INLINE_ bool is_finalizing_scripts_domain() const { return finalizing_scripts_domain; } |