diff options
author | David Snopek <dsnopek@gmail.com> | 2023-07-07 08:26:55 -0500 |
---|---|---|
committer | David Snopek <dsnopek@gmail.com> | 2023-07-31 15:14:10 -0500 |
commit | 8bc1c1dbeb0342ae593c46c97e7032bbc664194c (patch) | |
tree | b8e2d273b4bdd17429adf91b88a6c16ac227f639 /include/godot_cpp | |
parent | c5d8447861fad7e5c812008420c3ec0ca7531590 (diff) | |
download | redot-cpp-8bc1c1dbeb0342ae593c46c97e7032bbc664194c.tar.gz |
Implement `String::resize()`
Diffstat (limited to 'include/godot_cpp')
-rw-r--r-- | include/godot_cpp/godot.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/godot_cpp/godot.hpp b/include/godot_cpp/godot.hpp index 59aa150..fb89b55 100644 --- a/include/godot_cpp/godot.hpp +++ b/include/godot_cpp/godot.hpp @@ -123,6 +123,7 @@ extern "C" GDExtensionInterfaceStringOperatorPlusEqChar gdextension_interface_st extern "C" GDExtensionInterfaceStringOperatorPlusEqCstr gdextension_interface_string_operator_plus_eq_cstr; extern "C" GDExtensionInterfaceStringOperatorPlusEqWcstr gdextension_interface_string_operator_plus_eq_wcstr; extern "C" GDExtensionInterfaceStringOperatorPlusEqC32str gdextension_interface_string_operator_plus_eq_c32str; +extern "C" GDExtensionInterfaceStringResize gdextension_interface_string_resize; extern "C" GDExtensionInterfaceXmlParserOpenBuffer gdextension_interface_xml_parser_open_buffer; extern "C" GDExtensionInterfaceFileAccessStoreBuffer gdextension_interface_file_access_store_buffer; extern "C" GDExtensionInterfaceFileAccessGetBuffer gdextension_interface_file_access_get_buffer; |