diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-05-03 08:13:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-03 08:13:34 +0200 |
commit | c9ce4069a371da36ecbb0c1216ed5990498a4412 (patch) | |
tree | 23082416355bb2fd3ae2965bf784329ade4c479d /core/extension/gdnative_interface.cpp | |
parent | 0275d60c1b50737e2e52a0b60c97048941bb74c8 (diff) | |
parent | 80f61352fb1b0bed251c06eb0a21a09374de77b3 (diff) | |
download | redot-engine-c9ce4069a371da36ecbb0c1216ed5990498a4412.tar.gz |
Merge pull request #60601 from touilleMan/gdextension_get_library_path
Add GDNativeInterface::get_library_path to GDExtension
Diffstat (limited to 'core/extension/gdnative_interface.cpp')
-rw-r--r-- | core/extension/gdnative_interface.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/extension/gdnative_interface.cpp b/core/extension/gdnative_interface.cpp index a312ce4ebd..a1d54f9c6d 100644 --- a/core/extension/gdnative_interface.cpp +++ b/core/extension/gdnative_interface.cpp @@ -1069,4 +1069,6 @@ void gdnative_setup_interface(GDNativeInterface *p_interface) { gdni.classdb_register_extension_class_property_subgroup = nullptr; gdni.classdb_register_extension_class_signal = nullptr; gdni.classdb_unregister_extension_class = nullptr; + + gdni.get_library_path = nullptr; } |