diff options
| author | David Snopek <dsnopek@gmail.com> | 2024-04-26 13:40:13 -0500 |
|---|---|---|
| committer | David Snopek <dsnopek@gmail.com> | 2024-04-30 08:48:53 -0500 |
| commit | 8cc78cfea9a5fda2c918d6392fbf450fcb133a94 (patch) | |
| tree | f99d9ee0075bb874b8ff9408bf83e5ec9ce703be /include/godot_cpp/core | |
| parent | e23b117ac32fdbeb0920f234e193e6d31307c0ad (diff) | |
| download | redot-cpp-8cc78cfea9a5fda2c918d6392fbf450fcb133a94.tar.gz | |
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 6dedc12..386ad25 100644 --- a/include/godot_cpp/core/class_db.hpp +++ b/include/godot_cpp/core/class_db.hpp @@ -228,7 +228,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; |
