diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2023-09-20 18:55:05 +0200 |
|---|---|---|
| committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-09-20 18:55:05 +0200 |
| commit | 6df12fe1873c7c477454bc87effe1c87a9735ddd (patch) | |
| tree | 788397edd03a623904d8e832a04ad90d84a2da61 /core/object/object.h | |
| parent | 0ba19c3e4afc7dccbc7beb481537383bb7a49a37 (diff) | |
| parent | 60851af4daf2d64631cfa87718da068b2ae47a4f (diff) | |
| download | redot-engine-6df12fe1873c7c477454bc87effe1c87a9735ddd.tar.gz | |
Merge pull request #80671 from fuzzybinary/gdextension-virtuals
Add functions for non-ptr style virtual calls in GDExtension
Diffstat (limited to 'core/object/object.h')
| -rw-r--r-- | core/object/object.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/object/object.h b/core/object/object.h index 3a698f7526..7da1c68edf 100644 --- a/core/object/object.h +++ b/core/object/object.h @@ -347,6 +347,8 @@ struct ObjectGDExtension { GDExtensionClassCreateInstance create_instance; GDExtensionClassFreeInstance free_instance; GDExtensionClassGetVirtual get_virtual; + GDExtensionClassGetVirtualCallData get_virtual_call_data; + GDExtensionClassCallVirtualWithData call_virtual_with_data; }; #define GDVIRTUAL_CALL(m_name, ...) _gdvirtual_##m_name##_call<false>(__VA_ARGS__) |
