aboutsummaryrefslogtreecommitdiff
path: root/modules/mono/csharp_script.h
diff options
context:
space:
mode:
authorIgnacio Etcheverry2017-10-16 03:54:23 +0200
committerIgnacio Etcheverry2017-10-16 03:54:23 +0200
commit63369ec3066195a7d282d2345beecb50bfd7de3d (patch)
tree9f63b9364669e28a434bef24603449283e2153a2 /modules/mono/csharp_script.h
parentdda64a3de6f57ff750370e1818f057149686c8fa (diff)
downloadgodot-63369ec3066195a7d282d2345beecb50bfd7de3d.tar.gz
godot-63369ec3066195a7d282d2345beecb50bfd7de3d.tar.zst
godot-63369ec3066195a7d282d2345beecb50bfd7de3d.zip
Diffstat (limited to 'modules/mono/csharp_script.h')
-rw-r--r--modules/mono/csharp_script.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/mono/csharp_script.h b/modules/mono/csharp_script.h
index 3fcc3bdf0..6b8475fb6 100644
--- a/modules/mono/csharp_script.h
+++ b/modules/mono/csharp_script.h
@@ -225,7 +225,7 @@ class CSharpLanguage : public ScriptLanguage {
struct StringNameCache {
- StringName _awaited_signal_callback;
+ StringName _signal_callback;
StringName _set;
StringName _get;
StringName _notification;
@@ -242,6 +242,8 @@ public:
_FORCE_INLINE_ int get_language_index() { return lang_idx; }
void set_language_index(int p_idx);
+ _FORCE_INLINE_ const StringNameCache &get_string_names() { return string_names; }
+
_FORCE_INLINE_ static CSharpLanguage *get_singleton() { return singleton; }
bool debug_break(const String &p_error, bool p_allow_continue = true);