summaryrefslogtreecommitdiff
path: root/tools/editor/editor_run_native.h
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2015-08-06 02:37:40 -0300
committerJuan Linietsky <reduzio@gmail.com>2015-08-06 02:37:40 -0300
commit9d185ccc30ad5fe7eb716390ca2e7f5c06574ce0 (patch)
treef497a42db3bc171e52cc60996ddb92f9d09a313b /tools/editor/editor_run_native.h
parent8280bb0de0737f9149face902db21192a0d98ca8 (diff)
-Merged the file server with the live editing and remote debug
-It is now really easy to deploy an android build with debug, and debug it
Diffstat (limited to 'tools/editor/editor_run_native.h')
-rw-r--r--tools/editor/editor_run_native.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/editor/editor_run_native.h b/tools/editor/editor_run_native.h
index 1512dc5dd9..a0baf527f1 100644
--- a/tools/editor/editor_run_native.h
+++ b/tools/editor/editor_run_native.h
@@ -39,6 +39,7 @@ class EditorRunNative : public HBoxContainer {
Map<StringName,MenuButton*> menus;
bool first;
bool deploy_dumb;
+ bool deploy_debug_remote;
void _run_native(int p_idx,const String& p_platform);
@@ -50,6 +51,10 @@ public:
void set_deploy_dumb(bool p_enabled);
bool is_deploy_dumb_enabled() const;
+
+ void set_deploy_debug_remote(bool p_enabled);
+ bool is_deploy_debug_remote_enabled() const;
+
EditorRunNative();
};