diff options
| author | Juan Linietsky | 2015-12-21 09:07:06 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2015-12-21 09:07:06 -0300 |
| commit | 15429d6ac95acb044c9eebd64356f33e7e5d14ef (patch) | |
| tree | 872a375b64d93fd6aaf1239e058a13630c9cfabe /core/os/thread.h | |
| parent | 81f62fb78c7f3c133ef764a99dcdf05077d8ced9 (diff) | |
| parent | b2f670ebaefa16b0345f9a7ae825f78dbfdec9f8 (diff) | |
| download | godot-15429d6ac95acb044c9eebd64356f33e7e5d14ef.tar.gz godot-15429d6ac95acb044c9eebd64356f33e7e5d14ef.tar.zst godot-15429d6ac95acb044c9eebd64356f33e7e5d14ef.zip | |
Diffstat (limited to 'core/os/thread.h')
| -rw-r--r-- | core/os/thread.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/os/thread.h b/core/os/thread.h index 590fee1fc..e3d00b039 100644 --- a/core/os/thread.h +++ b/core/os/thread.h @@ -35,6 +35,7 @@ @author Juan Linietsky <reduzio@gmail.com> */ +#include "ustring.h" typedef void (*ThreadCreateCallback)(void *p_userdata); @@ -71,7 +72,8 @@ protected: Thread(); public: - + + virtual Error set_name(const String& p_name); virtual ID get_ID() const=0; |
