diff options
Diffstat (limited to 'editor/export/editor_export_plugin.cpp')
-rw-r--r-- | editor/export/editor_export_plugin.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/editor/export/editor_export_plugin.cpp b/editor/export/editor_export_plugin.cpp index 5353eae654..28d0750d5a 100644 --- a/editor/export/editor_export_plugin.cpp +++ b/editor/export/editor_export_plugin.cpp @@ -60,6 +60,10 @@ void EditorExportPlugin::add_shared_object(const String &p_path, const Vector<St shared_objects.push_back(SharedObject(p_path, p_tags, p_target)); } +void EditorExportPlugin::_add_shared_object(const SharedObject &p_shared_object) { + shared_objects.push_back(p_shared_object); +} + void EditorExportPlugin::add_ios_framework(const String &p_path) { ios_frameworks.push_back(p_path); } |