summaryrefslogtreecommitdiffstats
path: root/core/object/object.h
diff options
context:
space:
mode:
authorJan Haller <bromeon@gmail.com>2024-04-25 22:19:19 +0200
committerJan Haller <bromeon@gmail.com>2024-04-27 14:13:17 +0200
commit27a637d28756b061676aa24f0e36f96488ce7a80 (patch)
tree2586817c1db1bbe9d6a6c8efd93f93733f301928 /core/object/object.h
parent11d3768132582d192b8464769f26b493ae822321 (diff)
downloadredot-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.h3
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;