diff options
| author | Juan Linietsky | 2017-03-23 20:14:12 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2017-03-23 20:14:12 -0300 |
| commit | efaeebab4d83e5657288b7b20db6ce4ccf987a01 (patch) | |
| tree | 2c748755605fe2e1bc065519df35f57b49dbf7b4 /editor/editor_export.h | |
| parent | c37fad650f92845a6f59740fea2fea1b46f56db1 (diff) | |
| download | godot-efaeebab4d83e5657288b7b20db6ce4ccf987a01.tar.gz godot-efaeebab4d83e5657288b7b20db6ce4ccf987a01.tar.zst godot-efaeebab4d83e5657288b7b20db6ce4ccf987a01.zip | |
Diffstat (limited to 'editor/editor_export.h')
| -rw-r--r-- | editor/editor_export.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/editor/editor_export.h b/editor/editor_export.h index fcd671e03..1c9f5b335 100644 --- a/editor/editor_export.h +++ b/editor/editor_export.h @@ -153,6 +153,7 @@ private: protected: virtual void get_preset_features(const Ref<EditorExportPreset> &p_preset, List<String> *r_features) = 0; String find_export_template(String template_file_name) const; + void gen_export_flags(Vector<String> &r_flags, int p_flags); public: struct ExportOption { @@ -190,7 +191,7 @@ public: DEBUG_FLAG_VIEW_NAVIGATION = 16, }; - virtual Error run(int p_device, int p_debug_flags) { return OK; } + virtual Error run(const Ref<EditorExportPreset> &p_preset, int p_device, int p_debug_flags) { return OK; } virtual bool can_export(const Ref<EditorExportPreset> &p_preset, String &r_error, bool &r_missing_templates) const = 0; @@ -234,6 +235,8 @@ public: void load_config(); + bool poll_export_platforms(); + EditorExport(); ~EditorExport(); }; |
