summaryrefslogtreecommitdiffstats
path: root/editor/editor_node.h
diff options
context:
space:
mode:
Diffstat (limited to 'editor/editor_node.h')
-rw-r--r--editor/editor_node.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/editor/editor_node.h b/editor/editor_node.h
index 7ef38b4edb..36332e3d78 100644
--- a/editor/editor_node.h
+++ b/editor/editor_node.h
@@ -246,6 +246,8 @@ private:
bool debug = false;
bool pack_only = false;
bool android_build_template = false;
+ bool patch = false;
+ Vector<String> patches;
} export_defer;
static EditorNode *singleton;
@@ -880,7 +882,7 @@ public:
void _copy_warning(const String &p_str);
- Error export_preset(const String &p_preset, const String &p_path, bool p_debug, bool p_pack_only, bool p_android_build_template);
+ Error export_preset(const String &p_preset, const String &p_path, bool p_debug, bool p_pack_only, bool p_android_build_template, bool p_patch, const Vector<String> &p_patches);
bool is_project_exporting() const;
Control *get_gui_base() { return gui_base; }