aboutsummaryrefslogtreecommitdiff
path: root/core/os/thread.h
diff options
context:
space:
mode:
authorAriel Manzur2015-12-17 06:24:27 -0300
committerAriel Manzur2015-12-17 06:24:27 -0300
commit10298b9534937c8662fe6bea6dcf79457bd53970 (patch)
treef329c7c04aa20a5e6d1b3fd4a7d366bbf49842cc /core/os/thread.h
parent6c3c20fc35cfe324a55409bd3d8fb0f0028774fe (diff)
downloadgodot-10298b9534937c8662fe6bea6dcf79457bd53970.tar.gz
godot-10298b9534937c8662fe6bea6dcf79457bd53970.tar.zst
godot-10298b9534937c8662fe6bea6dcf79457bd53970.zip
Diffstat (limited to 'core/os/thread.h')
-rw-r--r--core/os/thread.h4
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;