From e75ebffb70f53426e4d8cafad7a2ff608602fda7 Mon Sep 17 00:00:00 2001 From: David Snopek Date: Tue, 16 May 2023 20:59:54 -0500 Subject: Add support for adding/removing editor plugins --- gdextension/gdextension_interface.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'gdextension/gdextension_interface.h') diff --git a/gdextension/gdextension_interface.h b/gdextension/gdextension_interface.h index 44cea71..23717eb 100644 --- a/gdextension/gdextension_interface.h +++ b/gdextension/gdextension_interface.h @@ -2106,6 +2106,26 @@ typedef void (*GDExtensionInterfaceClassdbUnregisterExtensionClass)(GDExtensionC */ typedef void (*GDExtensionInterfaceGetLibraryPath)(GDExtensionClassLibraryPtr p_library, GDExtensionStringPtr r_path); +/** + * @name editor_add_plugin + * + * Adds an editor plugin. + * + * It's safe to call during initialization. + * + * @param p_class_name A pointer to a StringName with the name of a class (descending from EditorPlugin) which is already registered with ClassDB. + */ +typedef void (*GDExtensionInterfaceEditorAddPlugin)(GDExtensionConstStringNamePtr p_class_name); + +/** + * @name editor_remove_plugin + * + * Removes an editor plugin. + * + * @param p_class_name A pointer to a StringName with the name of a class that was previously added as an editor plugin. + */ +typedef void (*GDExtensionInterfaceEditorRemovePlugin)(GDExtensionConstStringNamePtr p_class_name); + #ifdef __cplusplus } #endif -- cgit v1.2.3