You've already forked godot
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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user