diff options
| author | reduz <reduzio@gmail.com> | 2020-10-15 12:29:59 -0300 |
|---|---|---|
| committer | Juan Linietsky <reduzio@gmail.com> | 2020-10-18 12:28:44 +0200 |
| commit | ee06a70ea6ac51aa451d55c92b807346458822d7 (patch) | |
| tree | 94ea8f231fa2590e37a84fe8cefe93965e8328fc /modules/mono/mono_gd | |
| parent | 5b6a22e275ef8d8e2ad3b1e8074af4b30c076c27 (diff) | |
| download | redot-engine-ee06a70ea6ac51aa451d55c92b807346458822d7.tar.gz | |
Refactor MethodBind to use variadic templates
Removed make_binders and the old style generated binders.
Diffstat (limited to 'modules/mono/mono_gd')
| -rw-r--r-- | modules/mono/mono_gd/gd_mono_internals.h | 2 | ||||
| -rw-r--r-- | modules/mono/mono_gd/gd_mono_utils.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/mono/mono_gd/gd_mono_internals.h b/modules/mono/mono_gd/gd_mono_internals.h index 038d17f782..cf7efdecd6 100644 --- a/modules/mono/mono_gd/gd_mono_internals.h +++ b/modules/mono/mono_gd/gd_mono_internals.h @@ -35,7 +35,7 @@ #include "../utils/macros.h" -#include "core/object.h" +#include "core/class_db.h" namespace GDMonoInternals { diff --git a/modules/mono/mono_gd/gd_mono_utils.h b/modules/mono/mono_gd/gd_mono_utils.h index 5958bf3cc1..80569cb1c7 100644 --- a/modules/mono/mono_gd/gd_mono_utils.h +++ b/modules/mono/mono_gd/gd_mono_utils.h @@ -37,7 +37,7 @@ #include "../utils/macros.h" #include "gd_mono_header.h" -#include "core/object.h" +#include "core/class_db.h" #include "core/reference.h" #define UNHANDLED_EXCEPTION(m_exc) \ |
