aboutsummaryrefslogtreecommitdiff
path: root/modules/mono/csharp_script.h
diff options
context:
space:
mode:
authorRémi Verschelde2018-02-25 10:11:10 +0100
committerGitHub2018-02-25 10:11:10 +0100
commit08584b7e2215c852b80dc143cf712ccc73f9cacb (patch)
tree7e8eb213889f1762cb196f1a5a9aa3db30400e4a /modules/mono/csharp_script.h
parent2df206e6a80013ee617c0f8bdbc6e1ca1134f897 (diff)
parent3c7d9001bc9591368d743e9bd6cc29a74c7bddd5 (diff)
downloadgodot-08584b7e2215c852b80dc143cf712ccc73f9cacb.tar.gz
godot-08584b7e2215c852b80dc143cf712ccc73f9cacb.tar.zst
godot-08584b7e2215c852b80dc143cf712ccc73f9cacb.zip
Merge pull request #16804 from Valentactive/fix_mono_template_compiling
fix template builds with mono
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