1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-10 13:00:37 +00:00

Fix C# API assembly build errors in generics

This commit is contained in:
Ignacio Etcheverry
2018-10-05 19:39:11 +02:00
parent 6bc18042c2
commit b5aa5bca12
3 changed files with 7 additions and 7 deletions

View File

@@ -67,7 +67,7 @@ namespace Godot
public static T Load<T>(string path) where T : class
{
return (T) ResourceLoader.Load(path);
return ResourceLoader.Load<T>(path);
}
public static void Print(params object[] what)