diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-10-12 18:08:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-12 18:08:09 +0200 |
commit | 4f0eb2f520d5d7a5f38516e61e836857c4bf406f (patch) | |
tree | d91d403017ada040778850da312b5f77328d0333 /include/godot_cpp | |
parent | 292a50dd08f467ede1fd54745b70f54326c1e9c6 (diff) | |
parent | 3d814f9e4a7d8a3983970928406ed2eba6ac8241 (diff) | |
download | redot-cpp-4f0eb2f520d5d7a5f38516e61e836857c4bf406f.tar.gz |
Merge pull request #1263 from dsnopek/string-name-new
Use the new `string_name_new_with_latin1_chars` function to improve StringName construction performance
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 4561a75..b1862ef 100644 --- a/include/godot_cpp/godot.hpp +++ b/include/godot_cpp/godot.hpp @@ -124,6 +124,7 @@ extern "C" GDExtensionInterfaceStringOperatorPlusEqCstr gdextension_interface_st 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" GDExtensionInterfaceStringNameNewWithLatin1Chars gdextension_interface_string_name_new_with_latin1_chars; 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; |