aboutsummaryrefslogtreecommitdiff
path: root/modules/mono/csharp_script.h
diff options
context:
space:
mode:
authorMichele Valente2018-02-18 22:47:43 +0100
committerRémi Verschelde2018-02-27 11:34:52 +0100
commit990bddcf3662292c7466a817d2e89cb4b942c930 (patch)
treec38f550a477c3f567c208860f07c0cc5b641d9e3 /modules/mono/csharp_script.h
parentc730a6ce4406b939388cca23923fc21a9db2e438 (diff)
downloadgodot-990bddcf3662292c7466a817d2e89cb4b942c930.tar.gz
godot-990bddcf3662292c7466a817d2e89cb4b942c930.tar.zst
godot-990bddcf3662292c7466a817d2e89cb4b942c930.zip
Diffstat (limited to 'modules/mono/csharp_script.h')
-rw-r--r--modules/mono/csharp_script.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/mono/csharp_script.h b/modules/mono/csharp_script.h
index ffb1d2e0f..1f609627d 100644
--- a/modules/mono/csharp_script.h
+++ b/modules/mono/csharp_script.h
@@ -90,15 +90,15 @@ class CSharpScript : public Script {
Variant::Type type;
};
+ Map<StringName, Vector<Argument> > _signals;
+ bool signals_invalidated;
+
#ifdef TOOLS_ENABLED
List<PropertyInfo> exported_members_cache; // members_cache
Map<StringName, Variant> exported_members_defval_cache; // member_default_values_cache
Set<PlaceHolderScriptInstance *> placeholders;
bool source_changed_cache;
bool exports_invalidated;
- Map<StringName, Vector<Argument> > _signals;
- bool signals_invalidated;
-
void _update_exports_values(Map<StringName, Variant> &values, List<PropertyInfo> &propnames);
virtual void _placeholder_erased(PlaceHolderScriptInstance *p_placeholder);
#endif