diff options
author | David Snopek <dsnopek@gmail.com> | 2023-09-09 13:05:16 -0500 |
---|---|---|
committer | David Snopek <dsnopek@gmail.com> | 2023-09-10 11:17:59 -0500 |
commit | abef8e3874a688600e844b37833230a4163a2dce (patch) | |
tree | 8b8397a5e85925358e13c050ef0f20e8a47f40ef /core/object/object.h | |
parent | fc99492d3066098e938449b10e02f8e01d07e2d1 (diff) | |
download | redot-engine-abef8e3874a688600e844b37833230a4163a2dce.tar.gz |
Allow implementing `Object::_validate_property()` from GDExtension
Diffstat (limited to 'core/object/object.h')
-rw-r--r-- | core/object/object.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/object/object.h b/core/object/object.h index 309cd34c4b..d50e3ec4ff 100644 --- a/core/object/object.h +++ b/core/object/object.h @@ -321,6 +321,7 @@ struct ObjectGDExtension { GDExtensionClassFreePropertyList free_property_list; GDExtensionClassPropertyCanRevert property_can_revert; GDExtensionClassPropertyGetRevert property_get_revert; + GDExtensionClassValidateProperty validate_property; #ifndef DISABLE_DEPRECATED GDExtensionClassNotification notification; #endif // DISABLE_DEPRECATED |