diff options
Diffstat (limited to 'modules/mono/csharp_script.h')
-rw-r--r-- | modules/mono/csharp_script.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/mono/csharp_script.h b/modules/mono/csharp_script.h index f3a8ead319..3509a5c87d 100644 --- a/modules/mono/csharp_script.h +++ b/modules/mono/csharp_script.h @@ -103,7 +103,13 @@ class CSharpScript : public Script { MethodInfo method_info; }; + struct CSharpMethodInfo { + StringName name; // MethodInfo stores a string... + MethodInfo method_info; + }; + Vector<EventSignalInfo> event_signals; + Vector<CSharpMethodInfo> methods; #ifdef TOOLS_ENABLED List<PropertyInfo> exported_members_cache; // members_cache |