summaryrefslogtreecommitdiff
path: root/core/core_bind.h
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2021-08-25 18:50:15 -0300
committerGitHub <noreply@github.com>2021-08-25 18:50:15 -0300
commit5b01a3b3be2c352caea9b024fc11b0eec950ad8a (patch)
tree1b107e03304d4efb0c43028c3966bdcaee98cea9 /core/core_bind.h
parentae3a4224271fa058fd8424c6142a2357bd7624b2 (diff)
parente2f8df8c5b3b6a1d4c18a75ff1c8293cc5909bc0 (diff)
Merge pull request #52084 from reduz/engine-singleton-register
Add ability to register singletons from Engine API
Diffstat (limited to 'core/core_bind.h')
-rw-r--r--core/core_bind.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/core/core_bind.h b/core/core_bind.h
index 1dbe49f418..a6fac63edd 100644
--- a/core/core_bind.h
+++ b/core/core_bind.h
@@ -639,8 +639,11 @@ public:
bool is_in_physics_frame() const;
- bool has_singleton(const String &p_name) const;
- Object *get_singleton_object(const String &p_name) const;
+ bool has_singleton(const StringName &p_name) const;
+ Object *get_singleton_object(const StringName &p_name) const;
+ void register_singleton(const StringName &p_name, Object *p_object);
+ void unregister_singleton(const StringName &p_name);
+ Vector<String> get_singleton_list() const;
void set_editor_hint(bool p_enabled);
bool is_editor_hint() const;