diff options
author | Jan Haller <bromeon@gmail.com> | 2024-04-25 22:19:19 +0200 |
---|---|---|
committer | Jan Haller <bromeon@gmail.com> | 2024-04-27 14:13:17 +0200 |
commit | 27a637d28756b061676aa24f0e36f96488ce7a80 (patch) | |
tree | 2586817c1db1bbe9d6a6c8efd93f93733f301928 /core/object/object.h | |
parent | 11d3768132582d192b8464769f26b493ae822321 (diff) | |
download | redot-engine-27a637d28756b061676aa24f0e36f96488ce7a80.tar.gz |
GDExtension: provide `free_property_list_func` with length of array
Diffstat (limited to 'core/object/object.h')
-rw-r--r-- | core/object/object.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/object/object.h b/core/object/object.h index 915c3a8c25..adb50268d2 100644 --- a/core/object/object.h +++ b/core/object/object.h @@ -324,12 +324,13 @@ struct ObjectGDExtension { GDExtensionClassSet set; GDExtensionClassGet get; GDExtensionClassGetPropertyList get_property_list; - GDExtensionClassFreePropertyList free_property_list; + GDExtensionClassFreePropertyList2 free_property_list2; GDExtensionClassPropertyCanRevert property_can_revert; GDExtensionClassPropertyGetRevert property_get_revert; GDExtensionClassValidateProperty validate_property; #ifndef DISABLE_DEPRECATED GDExtensionClassNotification notification; + GDExtensionClassFreePropertyList free_property_list; #endif // DISABLE_DEPRECATED GDExtensionClassNotification2 notification2; GDExtensionClassToString to_string; |