Fixes script --> C# function calls not working

This commit is contained in:
2018-11-28 21:23:08 +01:00
parent babbf2875f
commit af0ff235e1
9 changed files with 106 additions and 53 deletions

View File

@@ -32,6 +32,7 @@ namespace Upsilon.BaseTypes.UserData
public string Name { get; }
private List<UserDataMethodPart> MethodParts { get; }
public System.Type ReturnType { get; }
public UserDataMethod(MethodInfo method)
{
@@ -41,6 +42,7 @@ namespace Upsilon.BaseTypes.UserData
{
part
};
ReturnType = part.Method.ReturnType;
}
public void LoadMethodPart(MethodInfo method)