virtualx-engine/modules/mono/glue/cs_files/ResourceLoaderExtensions.cs

10 lines
204 B
C#

namespace Godot
{
public static partial class ResourceLoader
{
public static T Load<T>(string path) where T : Godot.Resource
{
return (T) Load(path);
}
}
}