diff options
author | David Snopek <dsnopek@gmail.com> | 2023-08-28 16:07:26 -0500 |
---|---|---|
committer | David Snopek <dsnopek@gmail.com> | 2023-08-28 17:02:13 -0500 |
commit | f0405f18a3b2a3a925ce5b42eb11e35c15f170c5 (patch) | |
tree | 032a857d1d3e5e46e2f9bfda99ea2c2e24906a1c /include/godot_cpp | |
parent | c370f0f24a6e4ce767e21673731838f1affc45fb (diff) | |
download | redot-cpp-f0405f18a3b2a3a925ce5b42eb11e35c15f170c5.tar.gz |
Add support for placeholder_script_instance_create/update
Diffstat (limited to 'include/godot_cpp')
-rw-r--r-- | include/godot_cpp/godot.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/godot_cpp/godot.hpp b/include/godot_cpp/godot.hpp index fb89b55..edd4bba 100644 --- a/include/godot_cpp/godot.hpp +++ b/include/godot_cpp/godot.hpp @@ -167,6 +167,8 @@ extern "C" GDExtensionInterfaceObjectGetInstanceId gdextension_interface_object_ extern "C" GDExtensionInterfaceRefGetObject gdextension_interface_ref_get_object; extern "C" GDExtensionInterfaceRefSetObject gdextension_interface_ref_set_object; extern "C" GDExtensionInterfaceScriptInstanceCreate gdextension_interface_script_instance_create; +extern "C" GDExtensionInterfacePlaceHolderScriptInstanceCreate gdextension_interface_placeholder_script_instance_create; +extern "C" GDExtensionInterfacePlaceHolderScriptInstanceUpdate gdextension_interface_placeholder_script_instance_update; extern "C" GDExtensionInterfaceClassdbConstructObject gdextension_interface_classdb_construct_object; extern "C" GDExtensionInterfaceClassdbGetMethodBind gdextension_interface_classdb_get_method_bind; extern "C" GDExtensionInterfaceClassdbGetClassTag gdextension_interface_classdb_get_class_tag; |