aboutsummaryrefslogtreecommitdiff
path: root/editor/editor_run.h
diff options
context:
space:
mode:
Diffstat (limited to 'editor/editor_run.h')
-rw-r--r--editor/editor_run.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/editor/editor_run.h b/editor/editor_run.h
index 46c5dc752..796ff8fa3 100644
--- a/editor/editor_run.h
+++ b/editor/editor_run.h
@@ -29,8 +29,8 @@
#ifndef EDITOR_RUN_H
#define EDITOR_RUN_H
-#include "scene/main/node.h"
#include "os/os.h"
+#include "scene/main/node.h"
class EditorRun {
public:
enum Status {
@@ -41,16 +41,16 @@ public:
};
OS::ProcessID pid;
-private:
+private:
bool debug_collisions;
bool debug_navigation;
Status status;
-public:
+public:
Status get_status() const;
- Error run(const String& p_scene,const String p_custom_args,const List<String>& p_breakpoints);
- void run_native_notify() { status=STATUS_PLAY; }
+ Error run(const String &p_scene, const String p_custom_args, const List<String> &p_breakpoints);
+ void run_native_notify() { status = STATUS_PLAY; }
void stop();
OS::ProcessID get_pid() const { return pid; }