diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-06-23 15:15:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-23 15:15:41 +0200 |
commit | 1c54057933d76b566929a3a820015e84aea1d6d6 (patch) | |
tree | 7a58797a9e94936dd4355f74d8a311a66d532638 /core/core_bind.h | |
parent | e3fb066cb01019919c29dae3fd08e0753ed56b75 (diff) | |
parent | a6f0aba43d8f95ccbb03353b5dfa90d91a4cb8cf (diff) | |
download | redot-engine-1c54057933d76b566929a3a820015e84aea1d6d6.tar.gz |
Merge pull request #62326 from KoBeWi/userbind
Diffstat (limited to 'core/core_bind.h')
-rw-r--r-- | core/core_bind.h | 3 |
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; |