mirror of
https://github.com/Redot-Engine/redot-engine.git
synced 2025-12-06 23:31:53 -05: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);
|
|
}
|
|
}
|
|
}
|