diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-03-21 20:34:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-21 20:34:58 +0100 |
commit | 422a45a69e0c6f63bbb01fbe62931289b7c4651c (patch) | |
tree | a83a1f8334af52f9f88538fa52d8e01028c77f25 /platform/windows/export/export_plugin.h | |
parent | 5a28b1ae5118d05b5d22fe2f6f1109f839058c9d (diff) | |
parent | f301451fa3304ad2072898838ea9801b044ffbd9 (diff) |
Merge pull request #59371 from aaronfranke/export-platform-ext
Move extension logic to EditorExportPlatformLinuxBSD
Diffstat (limited to 'platform/windows/export/export_plugin.h')
-rw-r--r-- | platform/windows/export/export_plugin.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/platform/windows/export/export_plugin.h b/platform/windows/export/export_plugin.h index c483917a4c..04707a5667 100644 --- a/platform/windows/export/export_plugin.h +++ b/platform/windows/export/export_plugin.h @@ -45,6 +45,7 @@ class EditorExportPlatformWindows : public EditorExportPlatformPC { public: virtual Error export_project(const Ref<EditorExportPreset> &p_preset, bool p_debug, const String &p_path, int p_flags = 0) override; virtual Error sign_shared_object(const Ref<EditorExportPreset> &p_preset, bool p_debug, const String &p_path) override; + virtual List<String> get_binary_extensions(const Ref<EditorExportPreset> &p_preset) const override; virtual void get_export_options(List<ExportOption> *r_options) override; virtual bool get_export_option_visibility(const String &p_option, const Map<StringName, Variant> &p_options) const override; virtual bool can_export(const Ref<EditorExportPreset> &p_preset, String &r_error, bool &r_missing_templates) const override; |