summaryrefslogtreecommitdiffstats
path: root/core/core_bind.h
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2022-06-23 15:15:41 +0200
committerGitHub <noreply@github.com>2022-06-23 15:15:41 +0200
commit1c54057933d76b566929a3a820015e84aea1d6d6 (patch)
tree7a58797a9e94936dd4355f74d8a311a66d532638 /core/core_bind.h
parente3fb066cb01019919c29dae3fd08e0753ed56b75 (diff)
parenta6f0aba43d8f95ccbb03353b5dfa90d91a4cb8cf (diff)
downloadredot-engine-1c54057933d76b566929a3a820015e84aea1d6d6.tar.gz
Merge pull request #62326 from KoBeWi/userbind
Diffstat (limited to 'core/core_bind.h')
-rw-r--r--core/core_bind.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/core/core_bind.h b/core/core_bind.h
index c2098b1b59..ec9bcdbc02 100644
--- a/core/core_bind.h
+++ b/core/core_bind.h
@@ -551,7 +551,6 @@ class Thread : public RefCounted {
protected:
Variant ret;
- Variant userdata;
SafeFlag running;
Callable target_callable;
::Thread thread;
@@ -566,7 +565,7 @@ public:
PRIORITY_MAX
};
- Error start(const Callable &p_callable, const Variant &p_userdata = Variant(), Priority p_priority = PRIORITY_NORMAL);
+ Error start(const Callable &p_callable, Priority p_priority = PRIORITY_NORMAL);
String get_id() const;
bool is_started() const;
bool is_alive() const;