diff options
| author | Ignacio Etcheverry | 2018-02-18 19:53:46 +0100 |
|---|---|---|
| committer | GitHub | 2018-02-18 19:53:46 +0100 |
| commit | dad47d8876de45132226985dbbd079e060f6facc (patch) | |
| tree | abc1815b2a9502117d68db204fab0bf105fe4c0c /main/main.cpp | |
| parent | e380a98109f72d4e39f1f069c3cf35e408925a8b (diff) | |
| parent | 10998380799f25cb3198c62f29e30e743c6013ac (diff) | |
| download | godot-dad47d8876de45132226985dbbd079e060f6facc.tar.gz godot-dad47d8876de45132226985dbbd079e060f6facc.tar.zst godot-dad47d8876de45132226985dbbd079e060f6facc.zip | |
Diffstat (limited to 'main/main.cpp')
| -rw-r--r-- | main/main.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/main/main.cpp b/main/main.cpp index f6b3bafc5..ffe1215b1 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -122,13 +122,18 @@ static bool force_lowdpi = false; static int init_screen = -1; static bool use_vsync = true; static bool editor = false; -static bool project_manager = false; static bool show_help = false; static bool disable_render_loop = false; static int fixed_fps = -1; static OS::ProcessID allow_focus_steal_pid = 0; +static bool project_manager = false; + +bool Main::is_project_manager() { + return project_manager; +} + void initialize_physics() { /// 3D Physics Server |
