diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2024-04-17 10:44:44 +0300 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2024-08-28 10:29:01 +0300 |
commit | 07e986f728bea30787a2411a11d64c158e640015 (patch) | |
tree | 2672d40632a5164dff2dfdf522914e7364f79502 /editor/export/editor_export_plugin.h | |
parent | db24ed4eadf233f75cb1ebbf7552d396fb8b4b80 (diff) | |
download | redot-engine-07e986f728bea30787a2411a11d64c158e640015.tar.gz |
Allow adding custom export platforms using scripts / GDExtension.
Diffstat (limited to 'editor/export/editor_export_plugin.h')
-rw-r--r-- | editor/export/editor_export_plugin.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/export/editor_export_plugin.h b/editor/export/editor_export_plugin.h index 56eea85010..7a355614c7 100644 --- a/editor/export/editor_export_plugin.h +++ b/editor/export/editor_export_plugin.h @@ -91,6 +91,7 @@ class EditorExportPlugin : public RefCounted { protected: void set_export_preset(const Ref<EditorExportPreset> &p_preset); Ref<EditorExportPreset> get_export_preset() const; + Ref<EditorExportPlatform> get_export_platform() const; void add_file(const String &p_path, const Vector<uint8_t> &p_file, bool p_remap); void add_shared_object(const String &p_path, const Vector<String> &tags, const String &p_target = String()); |