You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
11 lines
202 B
C#
11 lines
202 B
C#
namespace Godot
|
|
{
|
|
public static partial class ResourceLoader
|
|
{
|
|
public static T Load<T>(string path) where T : class
|
|
{
|
|
return (T)(object)Load(path);
|
|
}
|
|
}
|
|
}
|