diff options
| author | Pedro J. Estébanez | 2017-08-22 17:21:41 +0200 |
|---|---|---|
| committer | Pedro J. Estébanez | 2017-08-22 17:24:20 +0200 |
| commit | 2a5ee5dec93b768f6caeb109be2a052ca610e747 (patch) | |
| tree | ee7b644e2b71183e8b9c276e894fffcbf6b0c554 /main/main.h | |
| parent | 39c6b3d942e1b872538cd062347d5a5631f57f05 (diff) | |
| download | godot-2a5ee5dec93b768f6caeb109be2a052ca610e747.tar.gz godot-2a5ee5dec93b768f6caeb109be2a052ca610e747.tar.zst godot-2a5ee5dec93b768f6caeb109be2a052ca610e747.zip | |
Diffstat (limited to 'main/main.h')
| -rw-r--r-- | main/main.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/main/main.h b/main/main.h index ca96e397c..98f46c13c 100644 --- a/main/main.h +++ b/main/main.h @@ -34,6 +34,7 @@ @author Juan Linietsky <reduzio@gmail.com> */ +#include "core/os/thread.h" #include "error_list.h" #include "typedefs.h" @@ -49,7 +50,7 @@ class Main { public: static Error setup(const char *execpath, int argc, char *argv[], bool p_second_phase = true); - static Error setup2(); + static Error setup2(Thread::ID p_main_tid_override = 0); static bool start(); static bool iteration(); static void cleanup(); |
