diff options
| author | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2019-07-08 15:18:38 +0200 |
|---|---|---|
| committer | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2019-07-08 18:07:20 +0200 |
| commit | dd22cc7527049e6fa4d1a095a8fcd4ebffeaabd4 (patch) | |
| tree | de9de328869a1476098c0353db86001d4d884a43 /modules/mono/csharp_script.h | |
| parent | aa3b8f7dbbf04c54795431eed40c63f9ed8e0fe1 (diff) | |
| download | redot-engine-dd22cc7527049e6fa4d1a095a8fcd4ebffeaabd4.tar.gz | |
C#: Fix some crashes during assemblies reloading
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 d31a1c35d2..76c7976285 100644 --- a/modules/mono/csharp_script.h +++ b/modules/mono/csharp_script.h @@ -144,6 +144,7 @@ class CSharpScript : public Script { // Do not use unless you know what you are doing friend void GDMonoInternals::tie_managed_to_unmanaged(MonoObject *, Object *); static Ref<CSharpScript> create_for_managed_type(GDMonoClass *p_class, GDMonoClass *p_native); + static void initialize_for_managed_type(Ref<CSharpScript> p_script, GDMonoClass *p_class, GDMonoClass *p_native); protected: static void _bind_methods(); |
