mirror of
https://github.com/tiennm99/godot.git
synced 2026-06-28 17:08:10 +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);
|
|
}
|
|
}
|
|
}
|