You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-15 13:51:40 +00:00
C#: Add source generator for method list
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user