summaryrefslogtreecommitdiffstats
path: root/editor/export/editor_export_plugin.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-01-04 16:38:15 +0100
committerRémi Verschelde <rverschelde@gmail.com>2024-01-04 16:38:15 +0100
commit38a1e17b9393a7e59c92d16c3ea0347e73af96d3 (patch)
tree82383f8af68fe6a00282a9878745c701defe6711 /editor/export/editor_export_plugin.cpp
parentdbd139c91c79747a5138cca50961dfeb3f6cd116 (diff)
parent5afc311783609cdc0d09f191b43372692c86df0d (diff)
downloadredot-engine-38a1e17b9393a7e59c92d16c3ea0347e73af96d3.tar.gz
Merge pull request #72572 from Daylily-Zeleen/daylily-zeleen/override_export_end_in_Cpp
Provide ability to override `EditorExportPlugin::_export_end()` in C++
Diffstat (limited to 'editor/export/editor_export_plugin.cpp')
-rw-r--r--editor/export/editor_export_plugin.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/export/editor_export_plugin.cpp b/editor/export/editor_export_plugin.cpp
index 6576960b9a..ec8c8c7b69 100644
--- a/editor/export/editor_export_plugin.cpp
+++ b/editor/export/editor_export_plugin.cpp
@@ -291,6 +291,8 @@ void EditorExportPlugin::_export_file(const String &p_path, const String &p_type
void EditorExportPlugin::_export_begin(const HashSet<String> &p_features, bool p_debug, const String &p_path, int p_flags) {
}
+void EditorExportPlugin::_export_end() {}
+
void EditorExportPlugin::skip() {
skipped = true;
}