diff options
| author | David Snopek <dsnopek@gmail.com> | 2024-05-08 04:40:52 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-08 04:40:52 -0500 |
| commit | e3f3cb58b73b61444cfe2c7421baeefac3772df6 (patch) | |
| tree | 75009767c8b87d129c402fcd87acaac67beb0170 /include/godot_cpp/core | |
| parent | 17a82e7f94c67a443fa708f1a625e6cf9fb4ad2f (diff) | |
| parent | 8cc78cfea9a5fda2c918d6392fbf450fcb133a94 (diff) | |
| download | redot-cpp-e3f3cb58b73b61444cfe2c7421baeefac3772df6.tar.gz | |
Merge pull request #1450 from dsnopek/free-property-list-count
Update `free_property_list` callback to take count
Diffstat (limited to 'include/godot_cpp/core')
| -rw-r--r-- | include/godot_cpp/core/class_db.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/godot_cpp/core/class_db.hpp b/include/godot_cpp/core/class_db.hpp index 31ebddc..ca5a326 100644 --- a/include/godot_cpp/core/class_db.hpp +++ b/include/godot_cpp/core/class_db.hpp @@ -229,7 +229,7 @@ void ClassDB::_register_class(bool p_virtual, bool p_exposed, bool p_runtime) { T::set_bind, // GDExtensionClassSet set_func; T::get_bind, // GDExtensionClassGet get_func; T::has_get_property_list() ? T::get_property_list_bind : nullptr, // GDExtensionClassGetPropertyList get_property_list_func; - T::free_property_list_bind, // GDExtensionClassFreePropertyList free_property_list_func; + T::free_property_list_bind, // GDExtensionClassFreePropertyList2 free_property_list_func; T::property_can_revert_bind, // GDExtensionClassPropertyCanRevert property_can_revert_func; T::property_get_revert_bind, // GDExtensionClassPropertyGetRevert property_get_revert_func; T::validate_property_bind, // GDExtensionClassValidateProperty validate_property_func; |
