mirror of
https://github.com/tiennm99/godot.git
synced 2026-07-31 06:25:56 +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);
|
|
}
|
|
}
|
|
}
|