summaryrefslogtreecommitdiff
path: root/editor/editor_run_native.h
diff options
context:
space:
mode:
Diffstat (limited to 'editor/editor_run_native.h')
-rw-r--r--editor/editor_run_native.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/editor/editor_run_native.h b/editor/editor_run_native.h
index be2e6d269d..df6714cb53 100644
--- a/editor/editor_run_native.h
+++ b/editor/editor_run_native.h
@@ -35,15 +35,10 @@
#include "scene/gui/menu_button.h"
class EditorRunNative : public HBoxContainer {
-
GDCLASS(EditorRunNative, HBoxContainer);
Map<int, MenuButton *> menus;
bool first;
- bool deploy_dumb;
- bool deploy_debug_remote;
- bool debug_collisions;
- bool debug_navigation;
int resume_idx;
int resume_platform;
@@ -55,18 +50,8 @@ protected:
void _notification(int p_what);
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;
- void set_debug_collisions(bool p_debug);
- bool get_debug_collisions() const;
-
- void set_debug_navigation(bool p_debug);
- bool get_debug_navigation() const;
-
void resume_run_native();
EditorRunNative();